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,
"name": "Twitter Scraper \u2013 Download Twitter Videos, Followers, Pictures & GIFs",
"version": "1.0.2",
"description": "Download Twitter (X) videos, images & GIFs, and save followers, tweets, and bookmarks\u2014right in the web app.",
"permissions": [
"scripting",
"activeTab",
"storage"
],
"host_permissions": [
"*:\/\/twitter.com\/*",
"*:\/\/x.com\/*"
],
"icons": {
"16": "icon16.png",
"64": "icon64.png",
"128": "icon128.png"
},
"action": {
"default_title": "Toggle Control Panel",
"default_icon": {
"16": "icon16.png",
"64": "icon64.png",
"128": "icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/twitter.com\/*",
"*:\/\/x.com\/*"
],
"js": [
"content-script.js"
],
"css": [
"injected.css"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/extensionpay.com\/*"
],
"js": [
"ExtPay.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"injected.js",
"injected.css",
"assets\/*"
],
"matches": [
"*:\/\/twitter.com\/*",
"*:\/\/x.com\/*"
]
}
]
}