Yandex.Collections

Yandex.Collections

Add images to your collections in just a couple of clicks and browse them wherever you want

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "2.0.0.1",
  "manifest_version": 2,
  "default_locale": "ru",
  "homepage_url": "https://yandex.ru/collections/",
  "minimum_opera_version": "33.0",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon48-dark.png",
    "default_title": "__MSG_button_add__"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "all_frames": true
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "options_page": "options/options.html",
  "permissions": [
    "contextMenus",
    "storage",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "public/css/index.css",
    "proxy/proxy.html"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self' 'unsafe-eval'"
}