QuickBookmarkToFolder
Lets you quickly find a bookmark folder and save a bookmark inside
QuickBookmarkToFolderคืออะไร?
QuickBookmarkToFolder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย José Tomás Tocino และคุณลักษณะหลักของมันคือ "Lets you quickly find a bookmark folder and save a bookmark inside"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย QuickBookmarkToFolder
ดาวน์โหลดไฟล์ส่วนขยาย QuickBookmarkToFolder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Are you tired of manually browsing your bookmark tree to find the proper folder for your newly found site? With "Quick Bookmark To Folder" you'll save a lot of time by quickly typing the name of the folder where you want to save your bookmark. Then, click the folder in the list or press enter to select the higlighted folder and your bookmark will be saved. As simple as that! You can also move up and down using the arrow keys. Source code can be found at: https://github.com/JoseTomasTocino/QuickBookmarkToFolder
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | QuickBookmarkToFolder |
ID | hkipofckibjiaojbbnhicbeckppnhfnc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/quickbookmarktofolder/hkipofckibjiaojbbnhicbeckppnhfnc |
คำอธิบาย | Lets you quickly find a bookmark folder and save a bookmark inside |
ขนาดไฟล์ | 45.95 KB |
จำนวนการติดตั้ง | 585 |
เวอร์ชันปัจจุบัน | 0.1.3 |
อัปเดตครั้งล่าสุด | 2021-12-27 |
วันที่เผยแพร่ | 2020-04-22 |
คะแนน | 4.29/5 รวมทั้งหมด 14 คะแนน |
ผู้พัฒนา | José Tomás Tocino |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "QuickBookmarkToFolder", "manifest_version": 2, "version": "0.1.3", "homepage_url": "http:\/\/localhost:8080\/", "description": "Lets you quickly find a bookmark folder and save a bookmark inside", "default_locale": "en", "permissions": [ "activeTab", "bookmarks", "tabs", "storage" ], "icons": { "16": "icons\/icon-16.png", "19": "icons\/icon-19.png", "32": "icons\/icon-32.png", "38": "icons\/icon-38.png", "128": "icons\/icon-128.png" }, "browser_action": { "default_popup": "popup.html", "default_title": "QuickBookmarkToFolder", "default_icon": { "16": "icons\/icon-16.png", "19": "icons\/icon-19.png", "32": "icons\/icon-32.png", "38": "icons\/icon-38.png", "128": "icons\/icon-128.png" } }, "options_ui": { "page": "options.html" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+K" }, "description": "Show the 'Quick Bookmark To Folder' popup" } }, "content_security_policy": "script-src 'self' ; object-src 'self'" } |