Inspect and view changes in Gllue AI Sourcing Assistant 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
{
"manifest_version": 3,
"name": "__MSG_gllue_ext_name__",
"description": "__MSG_gllue_ext_slogan__",
"version": "1.3.0",
"action": {
"default_popup": "popup/index.html",
"default_icon": "public/icon.png"
},
"background": {
"service_worker": "background/index.js",
"type": "module"
},
"content_scripts": [
{
"js": [
"content-script/index.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"exclude_matches": [
"*://*.gllue.com/*",
"*://*.gllue.net/*"
]
}
],
"options_page": "options/index.html",
"side_panel": {
"default_path": "side-panel/index.html"
},
"permissions": [
"contextMenus",
"sidePanel",
"storage"
],
"web_accessible_resources": [
{
"resources": [
"/public/*.jpg",
"/public/*.png"
],
"matches": [
"https://*/*"
]
}
],
"default_locale": "zh_CN",
"icons": {
"128": "public/icon.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}