Click and Text

Click and Text

Click and Text

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Click and Text",
  "description": "Click and Text",
  "version": "1.8",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "contextMenus",
    "http://*.guidebycell.com/",
    "https://*.guidebycell.com/"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/jquery-1.11.3.min.js",
        "js/ContentPage.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "short_name": "Click and Text",
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "Click and Text",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon-bitty.png",
    "48": "images/icon-small.png",
    "128": "images/icon-large.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "js/jquery-1.11.3.min.js",
      "js/Process.js",
      "js/background.js"
    ]
  },
  "content_security_policy": "script-src 'self'; object-src 'self'"
}