Inspect and view changes in Badges: New Color for X-Twitter 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": "Badges: New Color for X-Twitter",
"description": "__MSG_ext_desc__",
"version": "1.5.1.1",
"default_locale": "en",
"homepage_url": "https://peketter-tech.net/",
"author": "PEKETTER TECH",
"options_page": "options.html",
"action": {
"browser_style": true,
"defualt_icons": {
"48": "resources/icon48.png"
},
"default_popup": "options.html",
"default_title": "__MSG_ext_name__"
},
"icons": {
"16": "resources/icon16.png",
"19": "resources/icon19.png",
"32": "resources/icon32.png",
"48": "resources/icon48.png",
"128": "resources/icon128.png"
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"https://x.com/*"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"resources/*",
"_locales/*"
],
"matches": [
"https://x.com/*"
]
}
],
"permissions": [
"storage"
],
"host_permissions": [
"https://x.com/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
}
}