145 строки
3.7 KiB
JSON
145 строки
3.7 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "__MSG_extensionName__",
|
|
"description": "__MSG_extensionDescription__",
|
|
"version": "1.1.4",
|
|
"default_locale": "en_US",
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "firefox-translations-addon@mozilla.org",
|
|
"strict_min_version": "90.0"
|
|
}
|
|
},
|
|
"options_ui": {
|
|
"page": "view/static/dataConsent.html",
|
|
"browser_style": true
|
|
},
|
|
"permissions": [
|
|
"<all_urls>",
|
|
"tabs",
|
|
"webNavigation",
|
|
"storage",
|
|
"mozillaAddons"
|
|
],
|
|
"background": {
|
|
"persistent": true,
|
|
"scripts": [
|
|
"model/static/errorReporting/serializeError.js",
|
|
"model/modelRegistry.js",
|
|
"model/static/errorReporting/sentry.js",
|
|
"settings.js",
|
|
"controller/translation/bergamotTranslatorVersion.js",
|
|
"model/telemetry/schema.js",
|
|
"model/uuid.js",
|
|
"model/telemetry/PingSender.js",
|
|
"controller/languageDetection/LanguageDetection.js",
|
|
"controller/languageDetection/fasttext_wasm.js",
|
|
"controller/languageDetection/fasttext.js",
|
|
"model/telemetry/Metrics.js",
|
|
"model/telemetry/Telemetry.js",
|
|
"view/js/TranslationNotificationManager.js",
|
|
"controller/backgroundScript.js"
|
|
]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"<all_urls>"
|
|
],
|
|
"js": [
|
|
"model/Queue.js",
|
|
"controller/translation/TranslationMessage.js",
|
|
"controller/translation/Translation.js"
|
|
],
|
|
"all_frames": false,
|
|
"run_at": "document_idle"
|
|
},
|
|
{
|
|
"matches": [
|
|
"<all_urls>"
|
|
],
|
|
"js": [
|
|
"model/static/DOMPurify/purify.min.js",
|
|
"model/static/errorReporting/serializeError.js",
|
|
"model/contentErrors.js",
|
|
"settings.js",
|
|
"model/modelRegistry.js",
|
|
"controller/languageDetection/LanguageDetection.js",
|
|
"view/js/OutboundTranslation.js",
|
|
"view/js/InPageTranslation.js",
|
|
"model/uuid.js",
|
|
"mediator.js"
|
|
],
|
|
"css": [
|
|
"view/static/outboundTranslation.css"
|
|
],
|
|
"all_frames": true,
|
|
"run_at": "document_idle"
|
|
}
|
|
|
|
],
|
|
"web_accessible_resources": [
|
|
"controller/translation/translationWorker.js"
|
|
],
|
|
"incognito": "spanning",
|
|
"experiment_apis": {
|
|
"experiments_translationbar": {
|
|
"schema": "controller/experiments/TranslationBar/schema.json",
|
|
"parent": {
|
|
"scopes": [
|
|
"addon_parent"
|
|
],
|
|
"paths": [
|
|
[
|
|
"experiments",
|
|
"translationbar"
|
|
]
|
|
],
|
|
"script": "controller/experiments/TranslationBar/api.js",
|
|
"events": ["startup"]
|
|
}
|
|
},
|
|
"experiment_telemetryEnvironment": {
|
|
"schema": "controller/experiments/TelemetryEnvironment/schema.json",
|
|
"parent": {
|
|
"scopes": [
|
|
"addon_parent"
|
|
],
|
|
"paths": [
|
|
[
|
|
"experiments",
|
|
"telemetryEnvironment"
|
|
]
|
|
],
|
|
"script": "controller/experiments/TelemetryEnvironment/api.js"
|
|
}
|
|
},
|
|
"experiments_telemetryPreferences": {
|
|
"schema": "controller/experiments/TelemetryPreferences/schema.json",
|
|
"parent": {
|
|
"scopes": [
|
|
"addon_parent"
|
|
],
|
|
"paths": [
|
|
[
|
|
"experiments",
|
|
"telemetryPreferences"
|
|
]
|
|
],
|
|
"script": "controller/experiments/TelemetryPreferences/api.js"
|
|
}
|
|
}
|
|
},
|
|
"icons": {
|
|
"48": "/view/icons/translation-color.svg",
|
|
"96": "/view/icons/translation-color.svg"
|
|
},
|
|
"page_action": {
|
|
"show_matches": ["<all_urls>"],
|
|
"browser_style": true,
|
|
"default_icon": "view/icons/translation-bw.svg",
|
|
"default_title": "Firefox Translations"
|
|
},
|
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
|
|
}
|