twitter-t.co-remover/manifest.json

21 lines
362 B
JSON

{
"manifest_version": 2,
"name": "Twitter t.co remover",
"description": "recovers original URLs where possible",
"version": "1.0",
"icons": {
"64": "icons/icon.png"
},
"content_scripts": [
{
"matches": [
"*://*.twitter.com/*",
"*://twitter.com/*"
],
"js": [
"content_script.js"
]
}
]
}