Bookmarker
Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user.
Bookmarkerคืออะไร?
Bookmarker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bookmarker extension และคุณลักษณะหลักของมันคือ "Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bookmarker
ดาวน์โหลดไฟล์ส่วนขยาย Bookmarker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user. We're looking for feedback! Shoot us a response here! https://goo.gl/forms/AxniAdIRad9EZg2Y2
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | glhpfpaemdkplbllfmkbigklacjneoba |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/bookmarker/glhpfpaemdkplbllfmkbigklacjneoba |
คำอธิบาย | Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user. |
ขนาดไฟล์ | 962 KB |
จำนวนการติดตั้ง | 36 |
เวอร์ชันปัจจุบัน | 1.2.1 |
อัปเดตครั้งล่าสุด | 2019-02-24 |
วันที่เผยแพร่ | 2019-02-24 |
คะแนน | 3.50/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | bookmarker extension |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/nami634/Bookmarker |
URL หน้าช่วยเหลือ | https://github.com/nami634/Bookmarker/issues |
ภาษาที่รองรับ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bookmarker", "short_name": "Bookmarker", "description": "Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user.", "version": "1.2.1", "manifest_version": 2, "default_locale": "en", "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "browser_action": { "default_icon": { "19": "icons\/icon-19.png", "38": "icons\/icon-38.png" }, "default_title": "Bookmarker", "default_popup": "pages\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/content.js" ], "run_at": "document_end" } ], "options_page": "pages\/options.html", "options_ui": { "page": "pages\/options.html", "chrome_style": true }, "permissions": [ "tabs", "bookmarks", "activeTab", "storage", "management", "chrome:\/\/favicon\/" ], "commands": { "_execute_browser_action": { "global": false, "suggested_key": [ { "default": "Ctrl+D", "windows": "Ctrl+D", "mac": "Command+D" } ] }, "delete_bookmark": { "suggested_key": { "default": "Ctrl+I", "mac": "Command+I" }, "description": "\u30d6\u30c3\u30af\u30de\u30fc\u30af\u306e\u524a\u9664" } } } |