dewey.

dewey.

Save your favorite X (Twitter) and Bluesky bookmarks in one place

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "dewey.",
  "description": "Save your favorite X (Twitter) and Bluesky bookmarks in one place",
  "version": "4.1.6",
  "manifest_version": 3,
  "icons": {
    "128": "images/symbol.png"
  },
  "background": {
    "service_worker": "scripts/grabber/sw.js"
  },
  "action": {
    "default_popup": "templates/login.html",
    "default_icon": {
      "128": "images/symbol.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "plugins/jquery/jquery-3.5.1.min.js",
        "scripts/site/global.js",
        "scripts/grabber/content_handler.js",
        "scripts/floating_tweets/content_handler.js"
      ],
      "css": [
        "style/injected.css"
      ]
    },
    {
      "matches": [
        "https://x.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "plugins/jquery/jquery-3.5.1.min.js",
        "scripts/site/global.js",
        "scripts/grabber/content_handler.js",
        "scripts/floating_tweets/content_handler.js"
      ],
      "css": [
        "style/injected.css"
      ]
    },
    {
      "matches": [
        "https://bsky.app/*"
      ],
      "run_at": "document_start",
      "js": [
        "plugins/jquery/jquery-3.5.1.min.js",
        "scripts/site/global.js",
        "scripts/grabber/bsky/content_handler.js"
      ],
      "css": [
        "style/injected.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "templates/notes_popup.html",
        "templates/popup.html",
        "templates/floating.html",
        "scripts/grabber/grab_likes_count.js",
        "scripts/grabber/grab_tweet_context.js",
        "scripts/grabber/grab_global_context.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "scripting",
    "webRequest"
  ],
  "host_permissions": [
    "http://127.0.0.1:9000/*",
    "https://getdewey.co/*",
    "https://api.twitter.com/*",
    "https://twitter.com/*",
    "https://bsky.social/*",
    "https://bsky.app/*",
    "https://api.x.com/*",
    "https://x.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://getdewey.co/*",
      "http://127.0.0.1:9000/*"
    ]
  }
}