Tagged Bookmarks

A browser action with a popup dump of all bookmarks, including search, add, edit and delete.

Cos'è Tagged Bookmarks?

Tagged Bookmarks è un'estensione di Chrome sviluppata da paulshir, e la sua funzione principale è "A browser action with a popup dump of all bookmarks, including search, add, edit and delete.".

Scarica il file CRX dell'estensione Tagged Bookmarks

Scarica i file di estensione Tagged Bookmarks 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 simple extension that enables you to store and search for tags in your bookmarks.

It works by adding extra metadata to your existing bookmarks so your tags are synced with your chrome bookmarks.                    

Informazioni di Base sull'Estensione

Nome Tagged Bookmarks Tagged Bookmarks
ID ifmjnildbmfokeoakbbhjebmiepcjgfc
URL Ufficiale https://chromewebstore.google.com/detail/tagged-bookmarks/ifmjnildbmfokeoakbbhjebmiepcjgfc
Descrizione A browser action with a popup dump of all bookmarks, including search, add, edit and delete.
Dimensione del File 12.41 KB
Conteggio Installazioni 10
Versione Corrente 0.1
Ultimo Aggiornamento 2014-10-08
Data di Pubblicazione 2014-10-08
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore paulshir
Tipo di Pagamento free
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tagged Bookmarks",
    "version": "0.1",
    "description": "A browser action with a popup dump of all bookmarks, including search, add, edit and delete.",
    "permissions": [
        "tabs",
        "bookmarks"
    ],
    "omnibox": {
        "keyword": "tags"
    },
    "icons": {
        "16": "tag_16.png",
        "48": "tag_48.png",
        "128": "tag_128.png"
    },
    "browser_action": {
        "default_title": "Tagged Bookmarks",
        "default_icon": "tag_16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
}