Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_ext_name__",
"description": "__MSG_ext_desc__",
"version": "0.1.1",
"default_locale": "en",
"action": {
"default_title": "__MSG_ext_name__",
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png"
}
},
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"permissions": [
"storage"
],
"optional_host_permissions": [
"https:\/\/api.openai.com\/*",
"https:\/\/translation.googleapis.com\/*",
"https:\/\/api-free.deepl.com\/*",
"https:\/\/api.deepl.com\/*",
"https:\/\/generativelanguage.googleapis.com\/*",
"https:\/\/api.deepseek.com\/*",
"https:\/\/openrouter.ai\/*"
],
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "popup.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"https:\/\/extensionpay.com\/*"
],
"js": [
"utils\/ExtPay.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/x.com\/*"
],
"run_at": "document_idle",
"js": [
"utils\/cache.js",
"utils\/i18n.js",
"utils\/detectLanguage.js",
"utils\/tweetParser.js",
"utils\/translate.js",
"inject.js",
"content-script.js"
],
"css": [
"style.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"style.css"
],
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/x.com\/*"
]
}
]
}