Bookmark Sidebar

Adds a toggleable sidebar with all your bookmarks at the edge of your browser window.

Bookmark Sidebar क्या है?

Bookmark Sidebar Philipp König द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a toggleable sidebar with all your bookmarks at the edge of your browser window."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extensions allows you to access your bookmarks by clicking on the left or right side your screen. You can edit, delete or rearrange your bookmarks by drag&drop and view some information about them by just clicking them with your left mouse button. You can check your bookmarks for updated or broken urls, too.

You can also open your bookmarks in the side panel provided by Chrome. The sidebar will then be opened alongside the websites and stays there as a permanent sidebar.

If you found a bug, have ideas for features or improvements, please let me know.                    

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

नाम Bookmark Sidebar Bookmark Sidebar
ID jdbnofccmhefkmjbkkdkfiicjkgofkdh
आधिकारिक URL https://chromewebstore.google.com/detail/bookmark-sidebar/jdbnofccmhefkmjbkkdkfiicjkgofkdh
विवरण Adds a toggleable sidebar with all your bookmarks at the edge of your browser window.
फ़ाइल का आकार 738 KB
स्थापना संख्या 330,721
वर्तमान संस्करण 2.2.0
अंतिम अपडेट 2023-09-11
प्रकाशन तिथि 2020-06-01
रेटिंग 4.55/5 कुल 1546 रेटिंग्स
डेवलपर Philipp König
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://extensions.redeviation.com/
सहायता पृष्ठ URL https://extensions.redeviation.com/feedback/bs
गोपनीयता नीति पृष्ठ URL https://extensions.redeviation.com/privacy
समर्थित भाषाएँ id,de,en,en-US,fr,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,th,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extension_name__",
    "short_name": "__MSG_extension_name_short__",
    "description": "__MSG_extension_desc__",
    "default_locale": "en",
    "version": "2.2.0",
    "version_name": "2.2.0",
    "minimum_chrome_version": "114",
    "homepage_url": "https:\/\/extensions.redeviation.com\/",
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "css": [
                "css\/contentBase.css"
            ],
            "js": [
                "js\/extension.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": "img\/icon\/128x128.png"
    },
    "commands": {
        "_execute_action": {
            "description": "Toggle the sidebar"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "_favicon",
                "css\/sidebar.css",
                "css\/overlay.css",
                "css\/content.css",
                "css\/themes\/*",
                "img\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "incognito": "split",
    "options_ui": {
        "page": "html\/settings.html",
        "open_in_tab": true
    },
    "icons": {
        "256": "img\/icon\/256x256.png",
        "128": "img\/icon\/128x128.png",
        "48": "img\/icon\/48x48.png"
    },
    "host_permissions": [
        ""
    ],
    "side_panel": {
        "default_path": "html\/sidepanel.html"
    },
    "permissions": [
        "bookmarks",
        "storage",
        "favicon",
        "contextMenus",
        "scripting",
        "unlimitedStorage",
        "fontSettings",
        "sidePanel"
    ],
    "optional_permissions": [
        "tabs",
        "history",
        "topSites"
    ]
}