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": "ViralSort - Sort Instagram Reels & Manage in One Dashboard.",
"version": "2.1",
"description": "Sort Instagram Reels & manage your content creation flow from idea to publish.",
"icons": {
"16": "icons\/V.png",
"48": "icons\/V.png",
"128": "icons\/V.png"
},
"permissions": [
"webRequest",
"scripting",
"tabs",
"storage",
"activeTab"
],
"background": {
"service_worker": "js\/service-worker.js",
"type": "module"
},
"action": {
"default_icon": {
"16": "icons\/V16.png",
"48": "icons\/V48.png",
"64": "icons\/V64.png",
"128": "icons\/V128.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.instagram.com\/*",
"*:\/\/instagram.com\/*"
],
"js": [
"content_scripts\/content-script-injector.js",
"content_scripts\/content-script-data-listener.js"
],
"run_at": "document_start"
},
{
"matches": [
"*:\/\/www.instagram.com\/*",
"*:\/\/instagram.com\/*"
],
"js": [
"content_scripts\/content-script-reels-sort.js"
],
"css": [
"css\/content-script-styles.css"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/app.viralsort.com\/*",
"http:\/\/localhost:8000\/*"
],
"js": [
"content_scripts\/content-script-webapp.js"
],
"run_at": "document_start"
}
],
"host_permissions": [
"*:\/\/*.instagram.com\/*",
"https:\/\/app.viralsort.com\/*",
"https:\/\/viralsort.com\/*",
"*:\/\/localhost\/*"
],
"web_accessible_resources": [
{
"resources": [
"icons\/*",
"injected_scripts\/injected-script-reels-api.js",
"injected_scripts\/injected-script-xhr-interceptor.js",
"media\/*.gif"
],
"matches": [
"<all_urls>"
]
}
],
"externally_connectable": {
"matches": [
"https:\/\/app.viralsort.com\/*",
"*:\/\/localhost\/*"
]
}
}