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": "Sort Feed - Instagram Growth Analytics",
"version": "1.6",
"description": "Sort Feed \u2013 Instagram growth analytics, content sorter, and bulk downloader for creators, marketers, and businesses.",
"permissions": [
"scripting",
"activeTab",
"tabs",
"downloads",
"webRequest",
"storage"
],
"host_permissions": [
"https:\/\/www.instagram.com\/*",
"*:\/\/*.instagram.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.instagram.com\/*\/",
"https:\/\/www.instagram.com\/*\/reels"
],
"js": [
"content.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/www.instagram.com\/*\/",
"https:\/\/www.instagram.com\/*\/reels"
],
"js": [
"instagram_interceptor.js"
],
"run_at": "document_start",
"world": "MAIN"
},
{
"matches": [
"https:\/\/www.instagram.com\/*\/",
"https:\/\/www.instagram.com\/*\/reels"
],
"js": [
"bulk_downloader.js"
],
"run_at": "document_start",
"world": "MAIN"
}
]
}