AI Reader

AI Reader

Clean out your webpages and keep just the content

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AI Reader",
  "short_name": "AI Reader",
  "description": "Clean out your webpages and keep just the content",
  "version": "0.13",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jsm/jquery-3.1.1.min.js",
        "jsm/buy.min.js",
        "jsm/app.min.js",
        "jsm/getPagesSource.min.js",
        "jsm/page.min.js",
        "jsm/keyboardShortcuts.min.js"
      ],
      "css": [
        "css/page.css"
      ]
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAujSljMozg/Fw2GtKDwKx/KU0A7lDNwCQs7eHjabnB3g5BtfFbGGywLVIPLbmqozqb46xXb1/1KBNBMryQ09qkImSs3T3zNV9irbnnbYtUdX9KiTaLjCi8CMWjIQzU1ia/RPvYoCz6bsNP+YDV3Tec8mJkT496rOgFc5swW4y8j8DqHSbpYQ9MKO78mj+PH7l/eK18OxNItyjJ3ePn1hy2aZyMb5n0pOX6tQH82VolFjHB+oMdwyCobdG3Q8/AvKGGUh5ipYUNP07u3tgnQezalCrOZB61CFS8wIa9hKxlEU6n6pM7SoZ5aGTFBIkZccTzZt0pfXC/JJoPW4bhzd+JQIDAQAB",
  "browser_action": {
    "default_icon": "images/manreading.png"
  },
  "sandbox": {
    "pages": [
      "html/sandboxed.html"
    ]
  },
  "permissions": [
    "activeTab",
    "tabs",
    "ttsEngine",
    "tts",
    "<all_urls>",
    "contextMenus",
    "background",
    "storage",
    "identity",
    "https://www.googleapis.com/",
    "notifications",
    "http://*/",
    "https://*/"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "jsm/jquery-3.1.1.min.js",
      "jsm/buy.min.js",
      "jsm/app.min.js",
      "jsm/background.min.js"
    ]
  },
  "web_accessible_resources": [
    "jsm/*.js",
    "images/*.*",
    "html/popup.html",
    "html/purchase.html",
    "html/print.html",
    "css/*.css",
    "css/fonts/*.ttf"
  ],
  "icons": {
    "16": "images/manreading.png",
    "128": "images/manreading.png"
  }
}