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": "Scraper Game",
"version": "0.1.6",
"description": "Scrape public Instagram usernames from visible pages and export them.",
"permissions": [
"storage",
"activeTab",
"scripting",
"declarativeNetRequest"
],
"host_permissions": [
"https:\/\/*.instagram.com\/*",
"https:\/\/instagram.com\/*",
"https:\/\/app.scrapergame.work\/*"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "cors_rules",
"enabled": true,
"path": "rules.json"
}
]
},
"icons": {
"16": "Images\/scraper-favicon.png",
"48": "Images\/scraper-favicon.png",
"128": "Images\/scraper-favicon.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "Images\/scraper-favicon.png",
"48": "Images\/scraper-favicon.png",
"128": "Images\/scraper-favicon.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.instagram.com\/*",
"https:\/\/instagram.com\/*"
],
"js": [
"contentScript.js"
]
}
]
}