Smart Reader -  Bionic Reader

Smart Reader - Bionic Reader

Modify a web page to make it more readable by bolding the beginning of a word (like bionic reading).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "manifest_version": 2,
  "name": "smartReader",
  "version": "1.6",
  "description": "Modify a web page to make it more readable",
  "icons": {
    "48": "/icons/smartReader-48.png"
  },
  "permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/content_scripts/assembleElements.js",
        "/content_scripts/filterElements.js",
        "/content_scripts/isThisTag.js",
        "/content_scripts/modifyHtml.js",
        "/content_scripts/removeBold.js",
        "/content_scripts/textAtRoot.js",
        "/content_scripts/isAddonActived.js",
        "/content_scripts/isItLetter.js",
        "/content_scripts/updatePage.js",
        "main.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "/background/changeMode.js",
      "/background/handleMessage.js",
      "/background/updateIcon.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "/icons/button/smartReader-white-16.png",
      "32": "/icons/button/smartReader-white-32.png"
    },
    "default_title": "Change mode",
    "theme_icons": [
      {
        "light": "/icons/button/smartReader-white-16.png",
        "dark": "/icons/button/smartReader-black-16.png",
        "size": 16
      },
      {
        "light": "/icons/button/smartReader-white-32.png",
        "dark": "/icons/button/smartReader-black-32.png",
        "size": 32
      }
    ]
  }
}