Comfortable RPubs

Comfortable RPubs

Extension for comfortable reading the articles of RPubs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Comfortable RPubs",
  "description": "__MSG_extDescription__",
  "version": "0.0.6",
  "page_action": {
    "default_icon": "./icon_016.png",
    "default_title": "__MSG_popupTitle__",
    "default_popup": "./popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://rpubs.com/*",
        "http://rstudio-pubs-static.s3.amazonaws.com/*",
        "https://rpubs.com/*/*"
      ],
      "js": [
        "jquery-2.1.0.js",
        "myscript.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "icons": {
    "16": "./icon_016.png",
    "48": "./icon_048.png",
    "128": "./icon_128.png"
  },
  "background": {
    "page": "./background.html"
  },
  "default_locale": "en"
}