Bukubrow

Synchronise your browser bookmarks with Buku

Bukubrow क्या है?

Bukubrow Sam A. Horvath-Hunt द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Synchronise your browser bookmarks with Buku"।

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

screenshot

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

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

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

                        Bukubrow is a WebExtension for Buku, a command-line bookmark manager.

A corresponding native host is used to interface with your Buku database. Communication between the host and the browser extension is handled via native messaging.

Installing the host is required to allow the browser extension to talk to Buku. You can find installation instructions here: https://github.com/SamHH/bukubrow-host                    

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

नाम Bukubrow Bukubrow
ID ghniladkapjacfajiooekgkfopkjblpn
आधिकारिक URL https://chromewebstore.google.com/detail/bukubrow/ghniladkapjacfajiooekgkfopkjblpn
विवरण Synchronise your browser bookmarks with Buku
फ़ाइल का आकार 2.26 MB
स्थापना संख्या 339
वर्तमान संस्करण 5.0.3.0
अंतिम अपडेट 2023-09-04
प्रकाशन तिथि 2020-02-16
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर Sam A. Horvath-Hunt
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/SamHH/bukubrow-webext
सहायता पृष्ठ URL https://github.com/SamHH/bukubrow-webext/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bukubrow",
    "version": "5.0.3.0",
    "manifest_version": 2,
    "description": "Synchronise your browser bookmarks with Buku",
    "icons": {
        "128": "icon-128.png",
        "256": "icon-256.png"
    },
    "homepage_url": "https:\/\/github.com\/samhh\/bukubrow",
    "browser_action": {
        "default_icon": "icon-256.png",
        "default_popup": "content.html"
    },
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "scripts": [
            "backend.js"
        ]
    },
    "permissions": [
        "nativeMessaging",
        "storage",
        "tabs",
        "contextMenus",
        "activeTab"
    ],
    "omnibox": {
        "keyword": "buku"
    },
    "commands": {
        "_execute_browser_action": {
            "description": "Open Bukubrow"
        },
        "add_bookmark": {
            "description": "Open Bukubrow and add a bookmark"
        },
        "stage_all_tabs": {
            "description": "Send all tabs to Bukubrow's staging area"
        },
        "stage_window_tabs": {
            "description": "Send window tabs to Bukubrow's staging area"
        },
        "stage_active_tab": {
            "description": "Send the active tab to Bukubrow's staging area"
        }
    },
    "minimum_chrome_version": "55",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlBitSfQLABNqlk6AQGcOfBgs8Y9u+Sq1GU5+7\/jsqRz4E3WqZcEX\/9AHxH8FS6SXLItrBuDd80MAy6kM19uE7XgRCK4vY\/6lPcIgXIzGEeOTCtO0qkRIaMhgpgHjO\/XBGHH789RQ4X3PXGHvKmMdu3Jz1E9yF0cCDSuXG0eh6RKk9Ox7AL0Ldbukm7xeTD6W4Y10Ge5vnGhlMv50waK5upXcr8qXJU0s6GqbKaRH4ELfMrXmo1dltROIT0kAIkKpNJ8q9bbJ+uTZmCsDqUAH9rxiYsgWqFJ+a0EnQf8MEbvGH3hRO8PR\/7gm+BI0bcIFN7OHL3nrNxcB+V2duWtdYQIDAQAB",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "52.0"
        }
    }
}