Cek Tokopedia

Cek Tokopedia

Sudah Cek Tokopedia Belum?

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Cek Tokopedia",
  "short_name": "Cek Toped",
  "description": "Sudah Cek Tokopedia Belum?",
  "version": "1.5",
  "icons": {
    "16": "icon-brand.png",
    "48": "icon-brand.png",
    "128": "icon-brand.png"
  },
  "permissions": [
    "activeTab",
    "browsingData",
    "contextMenus",
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "icon.png"
  ],
  "browser_action": {
    "default_icon": "icon-brand.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "content_script.css"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "open_in_tab": true
  }
}