JSON Bookmarks

Update a local bookmarks directory directly from a JSON source.

JSON Bookmarks là gì?

JSON Bookmarks là một tiện ích mở rộng Chrome được phát triển bởi it, và tính năng chính của nó là "Update a local bookmarks directory directly from a JSON source.".

Ả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 JSON Bookmarks

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

                        With this extension, bookmarks from a central JSON source can be loaded / synced into a local bookmark directory.

The reason why we've created this extension was the following: We wanted to sync bookmarks across all employees, but we didn't want to store them on a 3rd-party cloud service or alike. Because we're using (Git) merge requests, we thought it would be nice to load extensions from a Git-managed JSON file.

As you can see, you can store the JSON file on a Git collaboration platform or on any other web server / service.

The JSON file structure looks like this:

{
    "confirm IT solutions": {
        "Website": "https://www.confirm.ch/",
        "Blog": "https://blog.confirm.ch/"
    }
}                    

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

Tên JSON Bookmarks JSON Bookmarks
ID nhcplcjcgpjimjnohoijcjglolbdhahg
URL Chính Thức https://chromewebstore.google.com/detail/json-bookmarks/nhcplcjcgpjimjnohoijcjglolbdhahg
Mô tả Update a local bookmarks directory directly from a JSON source.
Kích Thước Tệp 15.03 KB
Số Lần Cài Đặt 490
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2022-09-06
Ngày Phát Hành 2020-03-15
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển it
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Bookmarks",
    "description": "Update a local bookmarks directory directly from a JSON source.",
    "version": "1.2",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "bookmarks"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "assets\/icons\/16.png",
        "32": "assets\/icons\/32.png",
        "64": "assets\/icons\/64.png",
        "128": "assets\/icons\/128.png",
        "256": "assets\/icons\/256.png"
    },
    "action": {
        "default_title": "JSON Bookmarks",
        "default_icon": "assets\/icons\/32.png",
        "default_popup": "popup.html"
    }
}