dewey.

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

什麼是dewey.?

dewey.是由https://getdewey.co開發的Chrome擴展程式,該擴展的主要功能是“Save your favorite X (Twitter) and Bluesky bookmarks in one place”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載dewey.擴展crx文件

下載dewey.擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        X (formerly Twitter) bookmarks are a mess. Bluesky doesn’t have them yet. So we built dewey. Sync, search, and export all your bookmarks across multiple accounts.

Trusted by 20,000+ users who've collectively backed up over 15M bookmarks

Organize
Search, sort, tag, categorize, and annotate your X, Twitter, and Bluesky bookmarks. Keep track of all your saved tweets with ease and find what you're looking for in seconds.

Export
Seamlessly export bookmarks into tools like Notion. With automatic backups from any device your bookmarks are preserved even if the original tweets are deleted (images included).

Share
Make your folders public and share them with the world. Others can subscribe to your folders and get a peak into how you think.

Break Twitter API limits
Dewey doesn’t rely on APIs so you can export the first bookmark you've ever saved on Twitter, X, and BlueSky. X (Twitter) API has an 800 bookmark limit for sync and BlueSky doesn’t even have an API, let alone Bookmarks. Good thing we don't care.

Bookmark Across Social Apps
Sync your bookmarks across X (formerly Twitter) and Bluesky and view them all within the Dewey platform. Your data belongs to you. Now you can see it all in one place and search, sort, organize and export as you wish.                    

擴展基本資訊

名稱 dewey. dewey.
ID occohfgiljdagdmklhpplgmcnliljmgi
官方網址 https://chromewebstore.google.com/detail/dewey/occohfgiljdagdmklhpplgmcnliljmgi
簡介 Save your favorite X (Twitter) and Bluesky bookmarks in one place
檔案大小 3.23 MB
安裝次數 7,041
目前版本 4.1.3
更新時間 2024-02-11
上架時間 2021-07-01
評分 3.74/5 共 53 次評分
開發者 https://getdewey.co
電子郵箱 [email protected]
付費類型 free
擴展官網 https://getdewey.co
說明頁面URL https://getdewey.co/how-to-use/
隱私政策頁面URL https://getdewey.co/privacy-policy
支援的語言 en-US
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.3",
    "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": [
                ""
            ]
        }
    ],
    "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\/*"
        ]
    }
}