URL Reader

URL Reader

Quick view content from an URL.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "main.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://www.facebook.com/*"
      ],
      "css": [
        "style/style.css",
        "style/jquery-ui.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icons/128.png",
    "default_title": "URL Reader"
  },
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "commands": {},
  "name": "URL Reader",
  "permissions": [
    "contextMenus",
    "http://*/*",
    "https://*/*"
  ],
  "short_name": "URL Reader",
  "version": "1.0.1",
  "manifest_version": 2
}