INSORT | Sort Instagram Reels

INSORT | Sort Instagram Reels

Sort Instagram Reels by Views, Likes, Comments.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDes__",
  "default_locale": "en",
  "icons": {
    "128": "icons/128.png"
  },
  "action": {
    "default_icon": {
      "128": "icons/128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "js/content-script.js",
        "js/app.js"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "*://*.instagram.com/*"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "version": "1.0.3"
}