Ремемба

Ремемба

Быстрое добавление карточек в Ремембу с любой веб-страницы

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_action": {
    "default_title": "Rememba",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "icons": {
    "16": "icons/16.png",
    "38": "icons/38.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "lang.js",
      "content-popup/jquery.js",
      "google-dict-api.js",
      "remembaApi.js",
      "rememba-bg.js"
    ]
  },
  "version": "1.1.0",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "hotkeys.js",
        "rememba-cs.js"
      ]
    },
    {
      "matches": [
        "*://*.rememba.ru/*"
      ],
      "js": [
        "content-popup/jquery.js",
        "rememba-auth-checker.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>",
    "storage",
    "contextMenus"
  ],
  "name": "Ремемба",
  "description": "Быстрое добавление карточек в Ремембу с любой веб-страницы",
  "web_accessible_resources": [
    "content-popup/popup.html"
  ],
  "homepage_url": "http://rememba.ru/"
}