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": "InstaFollowr",
"version": "1.0",
"description": "Track your Instagram unfollowers, new followers, and non-follow-backs.",
"permissions": [
"storage",
"scripting",
"tabs"
],
"host_permissions": [
"https:\/\/www.instagram.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_title": "InstaFollowr - Analysez vos followers",
"default_icon": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.instagram.com\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_idle"
}
]
}