Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Country Revealer for X",
"description": "See the registered country of origin and username history for accounts on X (formerly Twitter).",
"version": "1.0.5",
"icons": {
"16": "resources\/logo_16.png",
"32": "resources\/logo_32.png",
"48": "resources\/logo_48.png",
"128": "resources\/logo_128.png"
},
"action": {
"default_title": "Country Revealer for X",
"default_popup": "popup.html",
"default_icon": {
"16": "resources\/logo_16.png",
"32": "resources\/logo_32.png",
"48": "resources\/logo_48.png",
"128": "resources\/logo_128.png"
}
},
"permissions": [
"cookies",
"storage",
"webRequest"
],
"host_permissions": [
"https:\/\/x.com\/*",
"https:\/\/twitter.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/x.com\/*",
"https:\/\/twitter.com\/*"
],
"js": [
"utils.js",
"content.js"
],
"css": [
"content.css"
]
}
]
}