Bookmark Switcher

Switch between several bookmark bars in a click!

Bookmark Switcher क्या है?

Bookmark Switcher Florent Catiau-Tristant द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Switch between several bookmark bars in a click!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Bookmark Switcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension creates multiple invisible bookmark bars.
You can add, rename, and remove bookmark bars from the addon popup.

Features:
- Create multiple bookmark bars with custom names (with emojis support! 🎉)
- Switch to the next bar using the handy keyboard shortcut Alt+Space!
- Anti spam system to avoid conflicts while switching quickly between bars

**I WILL NOT BE RESPONSIBLE IF YOU LOOSE ANY OF YOUR BOOKMARK**
Please make a backup of your bookmarks if they are important!

Compatibility note: This extension will likely not be compatible with Chromium bases browsers, has they may handle bookmarks differently. Known incompatibilities: Vivaldi                    

एक्सटेंशन की मूल जानकारी

नाम Bookmark Switcher Bookmark Switcher
ID fcjhcgkhgmmejkfoalamnaijffdlgigd
आधिकारिक URL https://chromewebstore.google.com/detail/bookmark-switcher/fcjhcgkhgmmejkfoalamnaijffdlgigd
विवरण Switch between several bookmark bars in a click!
फ़ाइल का आकार 567 KB
स्थापना संख्या 215
वर्तमान संस्करण 1.2.0
अंतिम अपडेट 2021-09-21
प्रकाशन तिथि 2021-09-16
रेटिंग 4.50/5 कुल 4 रेटिंग्स
डेवलपर Florent Catiau-Tristant
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Kapcash/bookmark-switcher
सहायता पृष्ठ URL https://github.com/Kapcash/bookmark-switcher/issues
समर्थित भाषाएँ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bookmark Switcher",
    "version": "1.2.0",
    "homepage_url": "https:\/\/github.com\/Kapcash",
    "description": "__MSG_extDescription__",
    "author": "Florent Catiau-Tristant",
    "default_locale": "en",
    "browser_specific_settings": {
        "gecko": {
            "id": "{b49fb79b-230f-4846-bfc4-11c9c99d41d8}",
            "strict_min_version": "80.0"
        }
    },
    "permissions": [
        "bookmarks",
        "storage"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Switch bookmark bar",
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png"
        }
    },
    "commands": {
        "next_bar": {
            "suggested_key": {
                "default": "Alt+Space"
            },
            "description": "Switch bookmark toolbars"
        }
    },
    "content_security_policy": "script-src 'self' ; object-src 'self'"
}