Cookie Factory

Cookie Factory

Cookie Factory - Edited by Unesco

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_title__",
  "author": "Christophe MASSOLIN",
  "description": "__MSG_description__",
  "version": "1.9.76",
  "default_locale": "en",
  "browser_action": {
    "browser_style": true,
    "default_popup": "browser_action.html",
    "default_icon": "assets/common/icons/icon-32.png",
    "theme_icons": [
      {
        "light": "assets/common/icons/icon-32.png",
        "dark": "assets/common/icons/icon-32.png",
        "size": 32
      }
    ]
  },
  "icons": {
    "16": "assets/common/icons/icon-16.png",
    "32": "assets/common/icons/icon-32.png",
    "48": "assets/common/icons/icon-48.png",
    "128": "assets/common/icons/icon-128.png"
  },
  "permissions": [
    "tabs",
    "bookmarks",
    "cookies",
    "storage",
    "contextMenus",
    "history",
    "unlimitedStorage",
    "downloads",
    "*://*/*"
  ],
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "assets/*/**",
    "main.js",
    "main.css",
    "index.html"
  ]
}