Bookmark All
Extends chrome's bookmark all tabs feature across all open windows.
Bookmark Allคืออะไร?
Bookmark All เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andrew Sutherland และคุณลักษณะหลักของมันคือ "Extends chrome's bookmark all tabs feature across all open windows."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bookmark All
ดาวน์โหลดไฟล์ส่วนขยาย Bookmark All ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Super simple extension. Extends chrome's 'Bookmark all Tabs' feature across all open windows. Click the icon, choose your folder (ISO 8601 Short by default) and every tab in every window is bookmarked into the new folder under 'Other Bookmarks'. That's it! This extension is open sourced on github, see Details > Website.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Bookmark All |
ID | jjhpikpjjhlcmifagompgmhkjalhjopj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/bookmark-all/jjhpikpjjhlcmifagompgmhkjalhjopj |
คำอธิบาย | Extends chrome's bookmark all tabs feature across all open windows. |
ขนาดไฟล์ | 67 KB |
จำนวนการติดตั้ง | 3,483 |
เวอร์ชันปัจจุบัน | 4 |
อัปเดตครั้งล่าสุด | 2013-08-26 |
วันที่เผยแพร่ | 2013-08-26 |
คะแนน | 4.18/5 รวมทั้งหมด 34 คะแนน |
ผู้พัฒนา | Andrew Sutherland |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/drewis/chrome_extension_bookmark_all |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "4", "name": "Bookmark All", "author": "Andrew Sutherland", "description": "Extends chrome's bookmark all tabs feature across all open windows.", "permissions": [ "bookmarks", "tabs" ], "icons": { "128": "star_icons_128.png", "48": "star_icons_48.png" }, "browser_action": { "default_icon": { "19": "star_icons_19.png", "38": "star_icons_38.png" }, "default_popup": "popup.html", "default_title": "Bookmark All" }, "background": { "scripts": [ "background.js" ] } } |