My Merrys

My Merrys

Tes achats sur internet te rapportent des cadeaux d’anniversaire d’exception et en plus, c’est totalement gratuit !…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "My Merrys",
  "short_name": "My Merrys",
  "description": "Tes achats sur internet te rapportent des cadeaux d’anniversaire d’exception et en plus, c’est totalement gratuit !…",
  "version": "2.5.1",
  "author": "mymerrys.com",
  "browser_action": {
    "default_icon": {
      "16": "/public/img/16x16.png",
      "48": "/public/img/48x48.png",
      "128": "/public/img/128x128.png"
    },
    "default_title": "My Merrys",
    "default_popup": "/popup/popup.html",
    "browser_style": true
  },
  "icons": {
    "16": "/public/img/16x16.png",
    "48": "/public/img/48x48.png",
    "128": "/public/img/128x128.png"
  },
  "options_ui": {
    "page": "/options/index.html"
  },
  "background": {
    "scripts": [
      "/background/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/contentScripts/contentScripts.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "public/*",
    "public/*/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.mymerrys.com/*",
      "*://*.fidesio.com/*",
      "*://*.horus.lan/*"
    ]
  },
  "permissions": [
    "notifications",
    "storage",
    "activeTab",
    "tabs",
    "<all_urls>"
  ]
}