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/" } }
扩展基本信息
名称 | JSON Bookmarks |
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 |
电子邮箱 | [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" } } |