Tagger

Tag web pages so that you can easily find it later.

Cos'è Tagger?

Tagger è un'estensione di Chrome sviluppata da jaewoong.info, e la sua funzione principale è "Tag web pages so that you can easily find it later.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Tagger

Scarica i file di estensione Tagger 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 chrome extension to enable OS X style tagging on web pages.  
Tagged pages are highlighted on search results pages.

By default, highlighting works on Google, Duckduckgo, Yahoo and Bing.
You can change settings on options page.

Feel free to contribute or report issues: https://github.com/jaewoongh/tagger-chrome                    

Informazioni di Base sull'Estensione

Nome Tagger Tagger
ID hedcldmdcdgjaccenecldaklgfkmceaf
URL Ufficiale https://chromewebstore.google.com/detail/tagger/hedcldmdcdgjaccenecldaklgfkmceaf
Descrizione Tag web pages so that you can easily find it later.
Dimensione del File 34.38 KB
Conteggio Installazioni 18
Versione Corrente 1.0
Ultimo Aggiornamento 2014-11-19
Data di Pubblicazione 2014-11-19
Valutazione 3.00/5 Totale 1 Valutazioni
Sviluppatore jaewoong.info
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jaewoongh/tagger-chrome
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tagger",
    "version": "1.0",
    "description": "Tag web pages so that you can easily find it later.",
    "author": "Jaewoong Hwang",
    "permissions": [
        "webNavigation",
        "tabs",
        "storage",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon-bitty.png",
        "48": "icon-small.png",
        "128": "icon-large.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "tagger.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "pageicon.png",
            "38": "pageicon2x.png"
        },
        "default_title": "Tag",
        "default_popup": "popup.html"
    },
    "options_page": "options.html"
}