Adds extra functionality to FastX
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "FastX addons",
"version": "1.3",
"description": "Adds extra functionality to FastX",
"icons": {
"48": "fastx-48.png",
"96": "fastx-96.png"
},
"action": {
"default_icon": {
"48": "fastx-48.png",
"96": "fastx-96.png"
},
"default_title": "FastX Addons"
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"background": {
"service_worker": "background/background-manifest2.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content/fastx-ff.js"
],
"run_at": "document_end"
}
],
"permissions": [
"tabs",
"storage",
"notifications",
"clipboardRead",
"clipboardWrite",
"nativeMessaging"
]
}