JSON Bookmarks

Update a local bookmarks directory directly from a JSON source.

ما هو JSON Bookmarks؟

JSON Bookmarks هو إضافة Chrome تم تطويرها بواسطة it، والميزة الرئيسية لها هي "Update a local bookmarks directory directly from a JSON source.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة JSON Bookmarks

قم بتنزيل ملفات الامتداد JSON Bookmarks بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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 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"
    }
}