Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"homepage_url": "https:\/\/soitis.dev\/control-panel-for-twitter",
"version": "4.19.2",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"64": "icons\/icon64.png",
"96": "icons\/icon96.png",
"128": "icons\/icon128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/mobile.twitter.com\/*",
"https:\/\/x.com\/*",
"https:\/\/mobile.x.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/mobile.twitter.com\/*",
"https:\/\/x.com\/*",
"https:\/\/mobile.x.com\/*"
],
"resources": [
"script.js"
]
}
],
"options_ui": {
"page": "options.html"
},
"action": {
"default_title": "__MSG_extensionName__",
"default_popup": "browser_action.html"
},
"permissions": [
"storage"
]
}