AppSorteos - Instagram Giveaways & Insights

AppSorteos - Instagram Giveaways & Insights

Pick a random winner from the comments of an Instagram or Tiktok post, and get Instagram Insights from a profile.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_application_title__",
  "description": "__MSG_application_desc__",
  "version": "1.1.5",
  "homepage_url": "https://app-sorteos.com/",
  "default_locale": "es",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "cookies",
    "https://*.app-sorteos.com/*",
    "https://*.instagram.com/*",
    "*://*.tiktok.com/*"
  ],
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "AppSorteos",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/vendor/jquery-lite.min.js",
        "js/insights.js"
      ],
      "css": [
        "css/insights.css"
      ],
      "matches": [
        "https://www.instagram.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.app-sorteos.com/*"
    ]
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}