PaperSpan

PaperSpan

Read It Later app to read more and finish your reading list - to use the web for better you.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDnjm8TAuXdhe9h8Vu/afWTUNaDlt+jIVWcaUYkAnUoELXGkWWMMucwWRKMbuVA86dVlUibFmxNwfiZMJ9GWAUSrgkp4eyVGagRdJgci88FRBaEhJe5GWv2j2Hr/IeZJ6/OQuZ7sR9hBKaWFugHTJ0Ci2/ezNzHcDgp9rYuRpdoSwIDAQAB",
  "description": "Read It Later app to read more and finish your reading list - to use the web for better you.",
  "manifest_version": 2,
  "name": "PaperSpan",
  "version": "2.1",
  "homepage_url": "https://www.paperspan.com/",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "identity",
    "storage",
    "contextMenus"
  ],
  "browser_action": {
    "default_icon": {
      "19": "icons/icon-19.png",
      "38": "icons/icon-38.png"
    },
    "default_title": "Add To PaperSpan",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery-3.3.1.min.js",
        "js/browser-polyfill.min.js",
        "js/toastr.js",
        "js/content_script.js"
      ],
      "css": [
        "css/toastr.css"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "js/browser-polyfill.min.js",
      "js/jquery-3.3.1.min.js",
      "js/background.js"
    ]
  },
  "options_ui": {
    "page": "options.html"
  },
  "oauth2": {
    "client_id": "477684055421-b5imk2ul1hp3a4sn96bdjc8lpl0d15be.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  }
}