Popchrom

Popchrom

Save time and effort with Popchrom by creating your own shortcuts for text phrases! Whether it's a simple email signature or…

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_extname__",
  "version": "1.8",
  "permissions": [
    "<all_urls>",
    "clipboardRead",
    "contextMenus",
    "notifications",
    "storage",
    "tabs"
  ],
  "description": "__MSG_extdescription__",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon-16x16.png",
    "48": "icons/icon-48x48.png",
    "128": "icons/icon-128x128.png"
  },
  "web_accessible_resources": [
    "icons/icon-16x16.png",
    "icons/icon-48x48.png",
    "icons/icon-128x128.png"
  ],
  "options_page": "options.html",
  "page_action": {
    "default_icon": "icons/icon-16x16.png",
    "default_title": "__MSG_extname__ - __MSG_options__",
    "popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/settings.js",
        "scripts/hashmap.js",
        "scripts/date.js",
        "scripts/search.js",
        "scripts/jquery-1.4.2.min.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "page": "background.html"
  }
}