warp
Open frequently used bookmarks fast without a single mouse click
warpคืออะไร?
warp เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://warp.vikian050194.dev และคุณลักษณะหลักของมันคือ "Open frequently used bookmarks fast without a single mouse click"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย warp
ดาวน์โหลดไฟล์ส่วนขยาย warp ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Single and main goal of this extension is fast opening of frequently used bookmarks. It's possible to update active tab or open new one. How to use: 1. Install extension; 2. Go to extensions shortcuts page (chrome://extensions/shortcuts) and re-configure keys combination for activation (if needed); 3. Activate extension (Alt+W by default); 4. Type directory or bookmark name (at least partially); 5. Navigate by arrows and select required bookmark; 6. Update active tab by pressing "Enter" or open new tab by "Shift+Enter". UI customization: 1. Items font size; 2. Active item font weight, color and pointer. UX customization: 1. Bookmarks directory (all available or just some sub-directory); 2. History max count and max age; 3. Count of items per page; 4. Items sorting algorithm; 5. Opening of new tab occurs in the same tabs group (or not); 6. Opening of new tab occurs as neighbor of active one (or not always); 7. Autoclosing; 8. Changelog automatic opening. Tech features: 1. No 3rd party libraries are in use - everything is made for purpose and from scratch; 2. Code is covered by unit tests and e2e tests - quality matters; 3. Automatically updated internal model of bookmarks directory provides really fast work; 4. Internal model stored locally and it's not available for other extensions - it's secure; 5. Bookmarks model and history items are available for download to make custom usage visualization or analytics; 6. Options are synchronized between all extension instances for your Google account via Chrome Sync - it's comfortable. Changelog is embedded into extension or could be found here: https://github.com/vikian050194/warp/blob/master/CHANGELOG.md
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | warp |
ID | kfpnmdafkjnbhidilikbkggjnmndobnc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/warp/kfpnmdafkjnbhidilikbkggjnmndobnc |
คำอธิบาย | Open frequently used bookmarks fast without a single mouse click |
ขนาดไฟล์ | 63.23 KB |
จำนวนการติดตั้ง | 1,205 |
เวอร์ชันปัจจุบัน | 1.18.0 |
อัปเดตครั้งล่าสุด | 2024-02-12 |
วันที่เผยแพร่ | 2022-04-29 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | https://warp.vikian050194.dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://warp.vikian050194.dev/home |
URL หน้าช่วยเหลือ | https://warp.vikian050194.dev/support |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "warp", "description": "Open frequently used bookmarks fast without a single mouse click", "version": "1.18.0", "permissions": [ "storage", "bookmarks", "contextMenus" ], "background": { "service_worker": "background\/index.js", "type": "module" }, "action": { "default_icon": "icons\/icon_32.png", "default_popup": "popup\/popup.html" }, "options_page": "options\/options.html", "options_ui": { "page": "options\/options.html", "open_in_tab": true }, "commands": { "_execute_action": { "suggested_key": { "windows": "Alt+W", "mac": "Command+W", "chromeos": "Alt+W", "linux": "Alt+W" } } }, "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "128": "icons\/icon_128.png" }, "homepage_url": "https:\/\/warp.vikian050194.dev" } |