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": "Sort Feed - Instagram & TikTok Supercharger",
"description": "Sort Instagram Reels, Posts & TikToks, export data, download & transcribe content.",
"version": "7.1",
"permissions": [
"activeTab",
"tabs",
"declarativeNetRequest",
"webNavigation",
"storage",
"identity",
"identity.email"
],
"host_permissions": [
"https:\/\/www.instagram.com\/*",
"https:\/\/www.tiktok.com\/*",
"https:\/\/*.taher-el-sheikh.workers.dev\/*",
"https:\/\/chrome-workers.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "Icons\/16 Sort Feed.png",
"48": "Icons\/48 Sort Feed.png",
"128": "Icons\/128 Sort Feed.png"
}
},
"declarative_net_request": {
"rule_resources": [
{
"id": "tiktok_interceptor",
"enabled": true,
"path": "rules.json"
}
]
},
"icons": {
"16": "Icons\/16 Sort Feed.png",
"48": "Icons\/48 Sort Feed.png",
"128": "Icons\/128 Sort Feed.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.instagram.com\/*"
],
"css": [
"Animate\/animate.css"
],
"js": [
"Instagram\/init_sortfeed_instagram.js",
"Instagram\/inject_instagram_script.js",
"Instagram\/show_overlay_banner.js",
"Instagram\/banner_on_insta.js",
"Instagram\/export\/csv_insta_export_function.js",
"Instagram\/export\/json_insta_export_function.js",
"Instagram\/export\/excel_insta_export_function.js",
"Instagram\/export\/xlsx.full.min.js",
"Instagram\/download_function.js",
"Instagram\/trans_function.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/www.tiktok.com\/*"
],
"css": [
"Animate\/animate.css"
],
"js": [
"Tiktok\/init_sortfeed_tiktok.js",
"Tiktok\/inject_tiktok_script.js",
"Tiktok\/update_tiktok_ui.js",
"Tiktok\/banner_on_tiktok.js",
"Tiktok\/export\/csv_tiktok_export_function.js",
"Tiktok\/export\/json_tiktok_export_function.js",
"Tiktok\/export\/excel_tiktok_export_function.js",
"Tiktok\/export\/xlsx.full.min.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"Icons\/*.png",
"Icons\/ZeroStateIcons\/*",
"Instagram\/script_instagram.js",
"Tiktok\/script_tiktok.js",
"Tiktok\/download_function.js"
],
"matches": [
"https:\/\/www.instagram.com\/*",
"https:\/\/www.tiktok.com\/*"
]
}
]
}