Bookmark All

Extends chrome's bookmark all tabs feature across all open windows.

Bookmark All là gì?

Bookmark All là một tiện ích mở rộng Chrome được phát triển bởi Andrew Sutherland, và tính năng chính của nó là "Extends chrome's bookmark all tabs feature across all open windows.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bookmark All

Tải xuống các tệp mở rộng Bookmark All dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bookmark All Bookmark All
ID jjhpikpjjhlcmifagompgmhkjalhjopj
URL Chính Thức https://chromewebstore.google.com/detail/bookmark-all/jjhpikpjjhlcmifagompgmhkjalhjopj
Mô tả Extends chrome's bookmark all tabs feature across all open windows.
Kích Thước Tệp 67 KB
Số Lần Cài Đặt 3,483
Phiên Bản Hiện Tại 4
Cập Nhật Lần Cuối 2013-08-26
Ngày Phát Hành 2013-08-26
Đánh Giá 4.18/5 Tổng số 34 Đánh Giá
Nhà Phát Triển Andrew Sutherland
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/drewis/chrome_extension_bookmark_all
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}