JSON Bookmarks
Update a local bookmarks directory directly from a JSON source.
JSON Bookmarksとは何ですか?
JSON Bookmarksはitによって開発されたChromeの拡張機能で、その主な機能は「Update a local bookmarks directory directly from a JSON source.」です。
拡張機能のスクリーンショット
JSON Bookmarks拡張機能のCRXファイルをダウンロード
JSON Bookmarks拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        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/"
    }
}                     拡張機能の基本情報
| 名前 |   |  
| ID | nhcplcjcgpjimjnohoijcjglolbdhahg | 
| 公式URL | https://chromewebstore.google.com/detail/json-bookmarks/nhcplcjcgpjimjnohoijcjglolbdhahg | 
| 説明 | Update a local bookmarks directory directly from a JSON source. | 
| ファイルサイズ | 15.03 KB | 
| インストール数 | 490 | 
| 現在のバージョン | 1.2 | 
| 最終更新日 | 2022-09-06 | 
| 公開日 | 2020-03-15 | 
| 評価 | 5.00/5 合計 1 レビュー | 
| 開発者 | it | 
| Eメール | [email protected] | 
| 支払い方法 | free | 
| 対応言語 | 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"
    }
}  |  |