Links to Bookmarks
Add a bunch of links to your bookmarks
Links to Bookmarks란 무엇입니까?
Links to Bookmarks은(는) cI_-__-_Io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a bunch of links to your bookmarks"입니다.
확장 프로그램 스크린샷
Links to Bookmarks 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
If you have a list of links that you want to add to your bookmarks, this extension is perfect for you. 📋 Clipboard support Detects the links in your clipboard and pre-fills the input with them. 🤖 Automatic title fetching Guesses and pre-fills the title value of your bookmark automatically. 🎯 Redirection resolving Follows the "shortened" links to their real destination, no more "bit.ly", "t.co", and other obfuscated URLs in your bookmarks (which means fewer duplicates). 🔎 Manual reviewing For each link, Links to Bookmarks pre-fills the title and URL inputs, but you can still manually review and change them to your liking. 🐫 Duplicates detection Provides a button to remove your existing bookmarks from your input, and notifies you if you're trying to add a link that you have already bookmarked. Compatible with the extension "Export saved links" if you want to export your saved links from FB to your bookmarks.
확장 프로그램 기본 정보
이름 | Links to Bookmarks |
ID | ldkcelmcmlapjkjhfmgndefmnjpckalj |
공식 URL | https://chromewebstore.google.com/detail/links-to-bookmarks/ldkcelmcmlapjkjhfmgndefmnjpckalj |
설명 | Add a bunch of links to your bookmarks |
파일 크기 | 1.14 MB |
설치 횟수 | 269 |
현재 버전 | 0.2.0 |
최근 업데이트 | 2021-03-24 |
출시 날짜 | 2020-09-13 |
평점 | 4.50/5 총 2 개의 평점 |
개발자 | cI_-__-_Io |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://twitter.com/j_____________n |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Links to Bookmarks", "version": "0.2.0", "description": "Add a bunch of links to your bookmarks", "background": { "persistent": false, "scripts": [ "assets\/background-5aeee333.js" ] }, "icons": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "96": "assets\/icon96.png", "128": "assets\/icon128.png" }, "browser_action": { "default_title": "Links to Bookmarks", "default_popup": "browser-action\/popup.html" }, "content_scripts": [ { "js": [ "assets\/content-script-3def6a44.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle" } ], "permissions": [ "bookmarks", "notifications", "storage", "webNavigation", "clipboardRead", "tabs" ], "web_accessible_resources": [ "messages-41f5149f.js", "content-script\/content-script.js" ] } |