Examine source code of MarkALink

Inspect and view changes in MarkALink source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "MarkALink",
  "short_name": "MarkALink",
  "version": "0.1.2",
  "description": "Highlight interesting links. Hide irrelevant ones. Remove whole websites from search results. Cyberpunk! Updated bookmark experience",
  "permissions": [
    "unlimitedStorage",
    "storage",
    "tabs",
    "http://*/",
    "https://*/",
    "contextMenus"
  ],
  "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": [
    "fonts/NEON.ttf",
    "fonts/Godsownjunkyard-Regular.otf"
  ],
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "background": {
    "page": "background/background.html"
  },
  "browser_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"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "romanisthere@gmail.com"
    }
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "manifest_version": 2
}