LocalCDN-Firefox-Chrome-Brave/manifest.json

91 lines
2.1 KiB
JSON
Raw Normal View History

2020-02-27 13:45:29 +01:00
{
2022-12-29 07:12:08 +01:00
"manifest_version": 3,
2022-12-29 07:27:54 +01:00
"name": "LocalCDN",
2022-12-29 07:12:08 +01:00
"version": "3.0.0",
2020-03-13 17:51:50 +01:00
"browser_specific_settings": {
"gecko": {
2020-03-13 18:13:54 +01:00
"id": "{b86e4813-687a-43e6-ab65-0bde4ab75758}",
2022-12-29 07:27:54 +01:00
"strict_min_version": "109.0"
2020-03-13 17:51:50 +01:00
}
},
2020-02-27 13:45:29 +01:00
"author": "nobody",
"default_locale": "en_US",
"description": "__MSG_extensionDescription__",
"icons": {
2020-07-08 17:03:06 +02:00
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"96": "icons/icon96.png",
"128": "icons/icon128.png"
2020-02-27 13:45:29 +01:00
},
"permissions": [
"privacy",
"storage",
"webNavigation",
"webRequest",
2022-12-29 08:33:16 +01:00
"webRequestBlocking"
2020-02-27 13:45:29 +01:00
],
2022-12-29 07:12:08 +01:00
"host_permissions": [
"<all_urls>"
],
2020-02-27 13:45:29 +01:00
2022-12-29 07:12:08 +01:00
"action": {
2020-02-27 13:45:29 +01:00
"default_icon": {
2020-07-12 09:55:48 +02:00
"16": "icons/action/default/icon16-default.png",
"18": "icons/action/default/icon18-default.png",
"19": "icons/action/default/icon19-default.png",
"32": "icons/action/default/icon32-default.png",
"36": "icons/action/default/icon36-default.png",
"38": "icons/action/default/icon38-default.png",
"64": "icons/action/default/icon64-default.png"
2020-02-27 13:45:29 +01:00
},
"default_popup": "pages/popup/popup.html",
"browser_style": false
},
2022-12-29 07:12:08 +01:00
"background": {
"scripts": [
"core/constants.js",
"core/storage-manager.js",
"modules/internal/wrappers.js",
"modules/internal/targets.js",
"modules/internal/helpers.js",
"modules/internal/stats.js",
"modules/internal/log.js",
"core/resources.js",
"core/mappings.js",
"core/shorthands.js",
"core/request-sanitizer.js",
"core/state-manager.js",
"core/request-analyzer.js",
"core/file-guard.js",
"core/messenger.js",
"core/interceptor.js",
"core/manipulate-dom.js",
"core/main.js"
]
},
2020-02-27 13:45:29 +01:00
"options_ui": {
"page": "pages/options/options.html",
"open_in_tab": true
2020-02-27 13:45:29 +01:00
},
2022-12-29 07:12:08 +01:00
"web_accessible_resources": [{
"resources": ["resources/*"],
"matches": ["<all_urls>"]
}],
2022-03-31 06:06:14 +02:00
2022-12-29 07:25:53 +01:00
"content_security_policy": {
"extension_pages": "default-src 'self'; img-src 'self' data:"
},
2022-12-29 07:15:23 +01:00
2021-08-17 18:50:33 +02:00
"commands": { "_execute_browser_action": {} }
2021-04-12 07:14:08 +02:00
2020-02-27 13:45:29 +01:00
}