iMark

iMark

A tool which can mark some words or paragraphs from web pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "iMark",
  "short_name": "iMark",
  "description": "A tool which can mark some words or paragraphs from web pages",
  "version": "1.1",
  "background": {
    "scripts": [
      "res/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "res/css/content.css"
      ],
      "js": [
        "res/js/jquery.min.js",
        "res/js/storage.js",
        "res/js/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "ico/icon16.png",
      "32": "ico/icon32.png",
      "48": "ico/icon48.png",
      "128": "ico/icon128.png"
    },
    "default_popup": "res/popup.html",
    "default_title": "click to open all marks"
  },
  "icons": {
    "16": "ico/icon16.png",
    "32": "ico/icon32.png",
    "48": "ico/icon48.png",
    "128": "ico/icon128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "contextMenus"
  ]
}