Bookmark This

Create bookmark entries from links in a page

Bookmark This là gì?

Bookmark This là một tiện ích mở rộng Chrome được phát triển bởi Owen Rumney, và tính năng chính của nó là "Create bookmark entries from links in a page".

Ả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 This

Tải xuống các tệp mở rộng Bookmark This 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

                        Don't interrupt your flow when reading an article, create bookmarks from any link in the current page, with out having to load the link.

Simply right click the link and select "Bookmark this", if the suggested bookmark title isn't right, just change it.

Early stages, so feedback welcome.                    

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

Tên Bookmark This Bookmark This
ID cdgfikopcomgllhdlknlfgblhmhemljn
URL Chính Thức https://chrome.google.com/webstore/detail/bookmark-this/cdgfikopcomgllhdlknlfgblhmhemljn
Mô tả Create bookmark entries from links in a page
Kích Thước Tệp 9.47 KB
Số Lần Cài Đặt 28
Phiên Bản Hiện Tại 0.9.3
Cập Nhật Lần Cuối 2019-05-30
Ngày Phát Hành 2019-05-30
Đánh Giá 2.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Owen Rumney
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bookmark This",
    "description": "Create bookmark entries from links in a page",
    "version": "0.9.3",
    "permissions": [
        "bookmarks",
        "contextMenus",
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "runat": "document_end"
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "manifest_version": 2
}