TopBookmarkToolbar

A convenient bookmarks toolbar on the top of web pages.

Cos'è TopBookmarkToolbar?

TopBookmarkToolbar è un'estensione di Chrome sviluppata da tzengshinfu, e la sua funzione principale è "A convenient bookmarks toolbar on the top of web pages.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione TopBookmarkToolbar

Scarica i file di estensione TopBookmarkToolbar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        A convenient bookmarks toolbar on the top of web pages.

v1.1.0 Release Notes:
[1]Add collapse menu function. -> when root bookmarks overflowed toolbar
[2]Add pause showing toolbar in 10sec function. -> on right click menu

v1.1.2 Bug fixes:
[1]Fix menu without scrollbar. -> when bookmarks go out of window viewable area                    

Informazioni di Base sull'Estensione

Nome TopBookmarkToolbar TopBookmarkToolbar
ID obbhcemdieglpilieepgcbhpocmbkphm
URL Ufficiale https://chromewebstore.google.com/detail/topbookmarktoolbar/obbhcemdieglpilieepgcbhpocmbkphm
Descrizione A convenient bookmarks toolbar on the top of web pages.
Dimensione del File 10.89 KB
Conteggio Installazioni 49
Versione Corrente 1.1.2
Ultimo Aggiornamento 2017-04-05
Data di Pubblicazione 2017-04-05
Valutazione 3.00/5 Totale 3 Valutazioni
Sviluppatore tzengshinfu
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.1.2",
    "default_locale": "en",
    "minimum_chrome_version": "26",
    "manifest_version": 2,
    "permissions": [
        "bookmarks",
        "contextMenus",
        "activeTab"
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_scripts.js"
            ],
            "css": [
                "mystyles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "folder.png",
        "url.png",
        "collapse.png",
        "pause.png"
    ]
}