SERP Extension

SERP Extension

A multi-purpose extension for increasing productivity online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SERP Extension",
  "author": "Devin Schumacher @ SERP https://serp.co",
  "version": "5.0.0",
  "description": "A multi-purpose extension for increasing productivity online.",
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "tabs",
    "alarms",
    "offscreen"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_popup": "./components/popup.html",
    "default_icon": {
      "16": "images/icons/icon16.png",
      "48": "images/icons/icon48.png",
      "128": "images/icons/icon128.png"
    }
  },
  "options_page": "./components/options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/amazon.js"
      ]
    }
  ],
  "host_permissions": [
    "https://*/",
    "http://*/"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  }
}