Inspect and view changes in Twitter Auto Refresh Expert - Tool 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_extName__",
"description": "__MSG_extDesc__",
"homepage_url": "https://tweetgrok.ai/",
"default_locale": "en",
"permissions": [
"storage"
],
"host_permissions": [
"<all_urls>"
],
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.bundle.js"
],
"css": [],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"128": "icons/128.png"
}
},
"web_accessible_resources": [
{
"resources": [
"icons/*",
"images/*"
],
"matches": [
"<all_urls>"
]
}
],
"version": "1.0.2"
}