Inspect and view changes in InterFast source codes across current and past versions
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",
"name": "__MSG_appName__",
"author": "InterFast",
"version": "25.4.17",
"manifest_version": 3,
"description": "__MSG_appDescription__",
"icons": {
"16": "assets/icons/icon-16.png",
"32": "assets/icons/icon-32.png",
"64": "assets/icons/icon-64.png",
"128": "assets/icons/icon-128.png"
},
"default_locale": "en",
"content_scripts": [
{
"matches": [
"https://*/*"
],
"js": [
"content/content.js"
]
},
{
"matches": [
"http://localhost:3000/*",
"https://uat.inter-fast.fr/*",
"https://app.inter-fast.fr/*"
],
"js": [
"interfast/interfast.js"
]
}
],
"background": {
"service_worker": "background/background.js"
},
"permissions": [
"storage"
],
"options_ui": {
"page": "options/index.html"
},
"action": {
"default_icon": {
"16": "assets/icons/icon-16.png",
"32": "assets/icons/icon-32.png",
"64": "assets/icons/icon-64.png"
},
"default_title": "Assistant InterFast",
"default_popup": "popup/index.html"
},
"web_accessible_resources": [
{
"resources": [
"assets/*",
"content/*",
"interfast/*",
"options/*",
"popup/*",
"background/*"
],
"matches": [
"<all_urls>"
]
}
]
}