MarkALink

MarkALink

Highlight interesting links. Hide irrelevant ones. Remove whole websites from search results. Cyberpunk! Updated bookmark experience

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MarkALink",
  "short_name": "MarkALink",
  "version": "0.1.3",
  "description": "Highlight interesting links. Hide irrelevant ones. Remove whole websites from search results. Cyberpunk! Updated bookmark experience",
  "permissions": [
    "unlimitedStorage",
    "storage",
    "tabs",
    "contextMenus"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "content_scripts": [
    {
      "js": [
        "datepicker/index.js",
        "content/helpers.js",
        "content/dom.js",
        "content/popup.js",
        "content/aside.js",
        "content/content.js"
      ],
      "css": [
        "datepicker/index.css",
        "content/popup.css",
        "content/logo.css",
        "content/dom.css",
        "content/content.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup/popup.html",
    "default_title": "MarkALink - Click to open",
    "default_icon": {
      "16": "images/logo128.png",
      "32": "images/logo128.png",
      "48": "images/logo128.png",
      "128": "images/logo128.png"
    }
  },
  "icons": {
    "16": "images/logo128.png",
    "32": "images/logo128.png",
    "48": "images/logo128.png",
    "128": "images/logo128.png"
  },
  "manifest_version": 3
}