LTT Sidebar Customizer

LTT Sidebar Customizer

A basic extension to customize what is shown on the sidebar on linustechtips.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "LTT Sidebar Customizer",
  "description": "A basic extension to customize what is shown on the sidebar on linustechtips.com",
  "version": "0.9.3",
  "manifest_version": 3,
  "options_ui": {
    "page": "popup.html",
    "open_in_tab": false
  },
  "permissions": [
    "storage",
    "webRequest",
    "scripting"
  ],
  "host_permissions": [
    "https://linustechtips.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "144": "/images/logo2.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://linustechtips.com/*"
      ],
      "js": [
        "/content_script.js",
        "jquery-3.6.0.min.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}