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"입니다.
확장 프로그램 스크린샷
dewey. 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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. |
ID | occohfgiljdagdmklhpplgmcnliljmgi |
공식 URL | 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": [ " |