Dashbook

Dashbook

The internet in one page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dashbook",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "The internet in one page",
  "homepage_url": "https://cool.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "The internet in one page"
  },
  "permissions": [
    "tabs",
    "*://*/*",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "contextMenus",
    "notifications",
    "unlimitedStorage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/jquery-3.5.1.min.js",
        "src/inject/inject.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.paypal.com https://www.gstatic.com https://www.googletagmanager.com/ https://www.cadourix.ro script-src 'self' 'unsafe-inline' 'unsafe-eval' default-src 'self'"
}