BLI-FIND

BLI-FIND

A Chrome extension project with Vue.js

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BLI-FIND",
  "short_name": "BLI-FIND",
  "description": "A Chrome extension project with Vue.js",
  "author": "anandtiwari <[email protected]>",
  "version": "1.0.5",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "<all_urls>",
    "*://*/*",
    "tabs",
    "background",
    "unlimitedStorage",
    "storage",
    "https://www.lazada.co.id/",
    "https://www.lazada.com.my/"
  ],
  "browser_action": {
    "default_title": "title",
    "default_popup": "pages/popup.html"
  },
  "background": {
    "persistent": false,
    "page": "pages/background.html"
  },
  "options_page": "pages/options.html",
  "content_scripts": [
    {
      "css": [],
      "js": [
        "js/manifest.js",
        "js/vendor.js",
        "js/content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true
    }
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "web_accessible_resources": [
    "js/content.js"
  ]
}