Inspect and view changes in RealTwit - See Real Twitter Blue Checkmarks 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": "RealTwit - See Real Twitter Blue Checkmarks",
"short_name": "realTwit",
"description": "See who's really verified on Twitter",
"version": "1.0.0",
"manifest_version": 3,
"permissions": [
"storage",
"background"
],
"host_permissions": [
"https://*.twitter.com/*",
"https://realtwit.org/*"
],
"background": {
"service_worker": "static/js/background.js"
},
"content_scripts": [
{
"matches": [
"https://*.twitter.com/*",
"https://realtwit.org/*"
],
"css": [
"/static/css/content.css"
],
"js": [
"/static/js/content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"static/media/*",
"*"
],
"matches": [
"https://*.twitter.com/*",
"https://realtwit.com/*"
]
}
],
"icons": {
"128": "icons/icon_production_128.png"
},
"action": {
"default_popup": "popup.html"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}