Thrive

Thrive

Thrive is a fully featured Learning Experience Platform which helps people to share knowledge, make new connections and learn new…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Thrive",
  "name": "Thrive",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-P83of1d5gfZHuGOkbsfkbUInX2Hmi+rYQG5kzlMXfsc='; object-src 'self'",
  "permissions": [
    "<all_urls>",
    "tabs",
    "activeTab",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "manifest_version": 2,
  "version": "3.4.0",
  "browser_action": {
    "icons": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*.learn.link/elearning/*",
        "*://*.learntest.link/elearning/*",
        "*://*.learndev.link/elearning/*"
      ],
      "css": [
        "app.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "images/*",
    "content.js",
    "clear.css",
    "content.css",
    "main.css"
  ]
}