Post Marker

Post Marker

This is an extension to mark new posts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Post Marker",
  "version": "2.0.0.30",
  "version_name": "0.0.0.30",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "128": "/icon/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://bsky.app/*"
      ],
      "js": [
        "/jquery/jquery-3.7.1.min.js",
        "/js/bluemarker.js"
      ],
      "css": [
        "/css/bluemarker.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "/jquery/jquery-3.7.1.min.js",
        "/js/xmarker.js"
      ],
      "css": [
        "/css/xmarker.css"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "bookmarks",
    "history",
    "management",
    "storage",
    "tabs"
  ]
}