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": "MediaSort AI | Instagram Sorter & Transcriber",
"description": "Sort Instagram Reels by views, get transcripts, and download content.",
"version": "2.0.4",
"permissions": [
"storage",
"activeTab",
"tabs",
"scripting",
"webRequest",
"downloads"
],
"host_permissions": [
"https:\/\/www.instagram.com\/*",
"https:\/\/i.instagram.com\/*",
"https:\/\/api.assemblyai.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "Icons\/new-logo.png",
"48": "Icons\/new-logo.png",
"128": "Icons\/new-logo.png"
}
},
"icons": {
"16": "Icons\/new-logo.png",
"48": "Icons\/new-logo.png",
"128": "Icons\/new-logo.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.instagram.com\/*"
],
"css": [
"styles\/main.css",
"styles\/merged-styles.css"
],
"js": [
"scripts\/sorter.js",
"scripts\/result-page.js",
"scripts\/floating-button.js",
"scripts\/reel-downloader.js",
"content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"Icons\/*.svg",
"Icons\/*.png",
"styles\/*.css",
"scripts\/*.js",
"scripts\/instagram-interceptor.js",
"popup-script.js"
],
"matches": [
"https:\/\/www.instagram.com\/*"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
}
}