Pinme Collage Maker

Pinme Collage Maker

Создать коллаж с помощью расширения от Pinme.ru

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pinme Collage Maker",
  "version": "1.5",
  "description": "Создать коллаж с помощью расширения от Pinme.ru",
  "permissions": [
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "img/16x16.png",
    "32": "img/32x32.png",
    "48": "img/64x64.png",
    "128": "img/128x128.png"
  },
  "browser_action": {
    "default_title": "Создать коллаж с помощью расширения от Pinme.ru",
    "default_icon": "img/32x32.png"
  },
  "background": {
    "scripts": [
      "popup.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/bodyscript.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}