-
Notifications
You must be signed in to change notification settings - Fork 850
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: convert files with DOS line breaks to Unix line breaks
- Loading branch information
Showing
15 changed files
with
2,784 additions
and
2,784 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"manifest_appName": { | ||
"message": "PT Plugin Plus" | ||
}, | ||
"manifest_shortName": { | ||
"message": "PT Plugin Plus" | ||
}, | ||
"manifest_appDescription": { | ||
"message": "Just a tools for Private Tracker." | ||
} | ||
{ | ||
"manifest_appName": { | ||
"message": "PT Plugin Plus" | ||
}, | ||
"manifest_shortName": { | ||
"message": "PT Plugin Plus" | ||
}, | ||
"manifest_appDescription": { | ||
"message": "Just a tools for Private Tracker." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"manifest_appName": { | ||
"message": "PT Plugin Plus" | ||
}, | ||
"manifest_shortName": { | ||
"message": "PTPP" | ||
}, | ||
"manifest_appDescription": { | ||
"message": "PT 助手,一个可以提升 PT 站点使用效率的工具。" | ||
} | ||
{ | ||
"manifest_appName": { | ||
"message": "PT Plugin Plus" | ||
}, | ||
"manifest_shortName": { | ||
"message": "PTPP" | ||
}, | ||
"manifest_appDescription": { | ||
"message": "PT 助手,一个可以提升 PT 站点使用效率的工具。" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,86 +1,86 @@ | ||
{ | ||
"name": "__MSG_manifest_appName__", | ||
"short_name": "__MSG_manifest_shortName__", | ||
"version": "1.6.1", | ||
"description": "__MSG_manifest_appDescription__", | ||
"manifest_version": 2, | ||
"default_locale": "zh_CN", | ||
"homepage_url": "https://github.com/pt-plugins/PT-Plugin-Plus", | ||
"browser_action": { | ||
"default_icon": "assets/icon-19.png", | ||
"default_title": "__MSG_manifest_appName__" | ||
}, | ||
"permissions": [ | ||
"activeTab", | ||
"clipboardRead", | ||
"clipboardWrite", | ||
"storage", | ||
"contextMenus", | ||
"notifications", | ||
"http://*/*", | ||
"https://*/*", | ||
"unlimitedStorage", | ||
"webRequest", | ||
"webRequestBlocking" | ||
], | ||
"optional_permissions": ["downloads", "cookies", "alarms"], | ||
"icons": { | ||
"16": "assets/icon.png", | ||
"19": "assets/icon-19.png", | ||
"64": "assets/icon-64.png", | ||
"128": "assets/icon-128.png" | ||
}, | ||
"options_ui": { | ||
"page": "index.html", | ||
"open_in_tab": true | ||
}, | ||
"background": { | ||
"scripts": [ | ||
"libs/types.expand.js", | ||
"libs/jquery/jquery-3.3.1.min.js", | ||
"libs/Base64.js", | ||
"background/index.js" | ||
] | ||
}, | ||
"content_scripts": [{ | ||
"matches": [ | ||
"http://*/*", | ||
"https://*/*" | ||
], | ||
"exclude_matches": [ | ||
"https://fonts.google.com/*" | ||
], | ||
"css": [ | ||
"assets/base.css", | ||
"libs/materialIcons/content_style.css", | ||
"libs/notice/noticejs.css", | ||
"libs/basicContext/basicContext.min.css", | ||
"libs/basicContext/themes/default.min.css" | ||
], | ||
"js": [ | ||
"libs/types.expand.js", | ||
"libs/jquery/jquery-3.3.1.min.js", | ||
"libs/Base64.js", | ||
"libs/notice/notice.js", | ||
"libs/basicContext/basicContext.min.js", | ||
"libs/drag.js", | ||
"contentScripts/index.js" | ||
] | ||
}], | ||
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", | ||
"web_accessible_resources": [ | ||
"libs/materialIcons/*.woff2", | ||
"assets/*", | ||
"resource/*" | ||
], | ||
"omnibox": { | ||
"keyword": "pt" | ||
}, | ||
"minimum_chrome_version": "80", | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"update_url": "https://pt-plugins.github.io/PT-Plugin-Plus/update/firefox.json", | ||
"strict_min_version": "80.0" | ||
} | ||
} | ||
} | ||
{ | ||
"name": "__MSG_manifest_appName__", | ||
"short_name": "__MSG_manifest_shortName__", | ||
"version": "1.6.1", | ||
"description": "__MSG_manifest_appDescription__", | ||
"manifest_version": 2, | ||
"default_locale": "zh_CN", | ||
"homepage_url": "https://github.com/pt-plugins/PT-Plugin-Plus", | ||
"browser_action": { | ||
"default_icon": "assets/icon-19.png", | ||
"default_title": "__MSG_manifest_appName__" | ||
}, | ||
"permissions": [ | ||
"activeTab", | ||
"clipboardRead", | ||
"clipboardWrite", | ||
"storage", | ||
"contextMenus", | ||
"notifications", | ||
"http://*/*", | ||
"https://*/*", | ||
"unlimitedStorage", | ||
"webRequest", | ||
"webRequestBlocking" | ||
], | ||
"optional_permissions": ["downloads", "cookies", "alarms"], | ||
"icons": { | ||
"16": "assets/icon.png", | ||
"19": "assets/icon-19.png", | ||
"64": "assets/icon-64.png", | ||
"128": "assets/icon-128.png" | ||
}, | ||
"options_ui": { | ||
"page": "index.html", | ||
"open_in_tab": true | ||
}, | ||
"background": { | ||
"scripts": [ | ||
"libs/types.expand.js", | ||
"libs/jquery/jquery-3.3.1.min.js", | ||
"libs/Base64.js", | ||
"background/index.js" | ||
] | ||
}, | ||
"content_scripts": [{ | ||
"matches": [ | ||
"http://*/*", | ||
"https://*/*" | ||
], | ||
"exclude_matches": [ | ||
"https://fonts.google.com/*" | ||
], | ||
"css": [ | ||
"assets/base.css", | ||
"libs/materialIcons/content_style.css", | ||
"libs/notice/noticejs.css", | ||
"libs/basicContext/basicContext.min.css", | ||
"libs/basicContext/themes/default.min.css" | ||
], | ||
"js": [ | ||
"libs/types.expand.js", | ||
"libs/jquery/jquery-3.3.1.min.js", | ||
"libs/Base64.js", | ||
"libs/notice/notice.js", | ||
"libs/basicContext/basicContext.min.js", | ||
"libs/drag.js", | ||
"contentScripts/index.js" | ||
] | ||
}], | ||
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", | ||
"web_accessible_resources": [ | ||
"libs/materialIcons/*.woff2", | ||
"assets/*", | ||
"resource/*" | ||
], | ||
"omnibox": { | ||
"keyword": "pt" | ||
}, | ||
"minimum_chrome_version": "80", | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"update_url": "https://pt-plugins.github.io/PT-Plugin-Plus/update/firefox.json", | ||
"strict_min_version": "80.0" | ||
} | ||
} | ||
} |
Oops, something went wrong.