Softfactory automated test plug-ins
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_name__",
"description": "__MSG_description__",
"version": "0.8.6",
"manifest_version": 3,
"default_locale": "en",
"background": {
"service_worker": "background/index.js"
},
"content_scripts": [
{
"all_frames": false,
"matches": [
"<all_urls>"
],
"match_about_blank": true,
"js": [
"content/index.js"
]
},
{
"all_frames": true,
"matches": [
"http://localhost:91/*",
"http://localhost:3089/*",
"http://192.168.1.10:91/*",
"http://62.234.60.108:91/*",
"http://itbuilder.javashop.cloud/*",
"http://softfactory.javashop.cloud/*",
"https://console.itbuilder.cn/*",
"https://console.softfactory.cloud/*"
],
"match_about_blank": true,
"js": [
"content/action-listener.js"
]
}
],
"externally_connectable": {
"ids": [
"*"
],
"matches": [
"http://localhost:91/*",
"http://localhost:3089/*",
"http://192.168.1.10:91/*",
"http://62.234.60.108:91/*",
"http://itbuilder.javashop.cloud/*",
"http://softfactory.javashop.cloud/*",
"https://console.itbuilder.cn/*",
"https://console.softfactory.cloud/*"
]
},
"permissions": [
"storage",
"tabs",
"offscreen",
"webNavigation"
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"action": {
"default_title": "__MSG_name__",
"default_icon": {
"16": "/icons/16x.png",
"32": "/icons/32x.png",
"48": "/icons/48x.png",
"128": "/icons/128x.png"
}
},
"icons": {
"16": "/icons/16x.png",
"32": "/icons/32x.png",
"48": "/icons/48x.png",
"128": "/icons/128x.png"
},
"sandbox": {
"pages": [
"sandbox.html"
]
}
}