Inspect and view changes in TW Power Tools (canary) 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",
"manifest_version": 3,
"name": "__MSG_appNameCanary__",
"version": "2.3.2.3",
"version_name": "2.3.2.3-canary",
"description": "__MSG_appDescription__",
"icons": {
"128": "icons/128.png",
"512": "icons/512.png"
},
"content_scripts": [
{
"matches": [
"https://support.google.com/s/community*"
],
"js": [
"communityConsoleMain.bundle.js",
"mdcStyles.bundle.js"
]
},
{
"matches": [
"https://support.google.com/s/community*"
],
"js": [
"communityConsoleStart.bundle.js"
],
"css": [
"css/common/console.css",
"css/unifiedprofile.css"
],
"run_at": "document_start"
},
{
"matches": [
"https://support.google.com/*/threads*"
],
"js": [
"publicForum.bundle.js",
"mdcStyles.bundle.js"
]
},
{
"matches": [
"https://support.google.com/*/thread/*"
],
"exclude_matches": [
"https://support.google.com/s/community*",
"https://support.google.com/*/thread/new*"
],
"js": [
"publicThread.bundle.js",
"mdcStyles.bundle.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://support.google.com/s/community*",
"https://support.google.com/*/thread/*"
],
"exclude_matches": [
"https://support.google.com/*/thread/new*"
],
"js": [
"profileIndicator.bundle.js"
]
},
{
"matches": [
"https://support.google.com/*/profile/*",
"https://support.google.com/profile/*"
],
"all_frames": true,
"js": [
"profile.bundle.js",
"mdcStyles.bundle.js"
],
"css": [
"css/common/forum.css",
"css/unifiedprofile.css"
]
}
],
"permissions": [
"declarativeNetRequestWithHostAccess",
"storage",
"alarms"
],
"host_permissions": [
"https://support.google.com/*"
],
"web_accessible_resources": [
{
"resources": [
"profileIndicatorInject.bundle.js",
"batchLockInject.bundle.js",
"xhrInterceptorInject.bundle.js",
"extraInfoInject.bundle.js",
"css/profileindicator_inject.css",
"css/ccdarktheme.css",
"css/batchlock_inject.css",
"css/enhanced_announcements_dot.css",
"css/reposition_expand_thread.css",
"css/thread_list_avatars.css",
"css/autorefresh_list.css",
"css/image_max_height.css",
"css/extrainfo.css"
],
"matches": [
"https://support.google.com/*"
]
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "blockDrafts",
"enabled": false,
"path": "rulesets/blockDrafts.json"
}
]
},
"action": {},
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"background": {
"service_worker": "bg.bundle.js"
},
"default_locale": "en"
}