Takhfifan

Takhfifan

Takhfifan chrome extention

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0.1",
  "name": "Takhfifan",
  "description": "Takhfifan chrome extention",
  "icons": {
    "16": "assets/icons/disable/16.png",
    "48": "assets/icons/disable/48.png",
    "128": "assets/icons/disable/128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_title": "تخفیفان"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/popup.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}