Inspect and view changes in TST Extension for GMB 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
{
"name": "TST Web Extension for GMB",
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icon-128.png"
},
"description": "Communicate with GMB Native Client.",
"icons": {
"16": "icon-16.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"*://tspt.tecosmart.com.tw/*"
],
"run_at": "document_start",
"js": [
"content_script.js"
]
}
],
"manifest_version": 2,
"minimum_chrome_version": "33",
"browser_specific_settings": {
"gecko": {
"id": "com.tecosmart.chrome.web.extension@tecosmart.com.tw",
"strict_min_version": "70.0"
}
},
"permissions": [
"nativeMessaging"
],
"short_name": "Extension for GMB",
"version": "0.0.3"
}