Shortlink Finder

Displays an icon if the current page has an official shortlink and makes it easy to copy!

Cos'è Shortlink Finder?

Shortlink Finder è un'estensione di Chrome sviluppata da http://joe.gl, e la sua funzione principale è "Displays an icon if the current page has an official shortlink and makes it easy to copy!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Shortlink Finder

Scarica i file di estensione Shortlink Finder 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

                        Displays an icon if the current page has an official short link/URL and makes it easy to copy!                    

Informazioni di Base sull'Estensione

Nome Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
URL Ufficiale https://chrome.google.com/webstore/detail/shortlink-finder/gjbgaoobcdohajkkcanaemikngkaojbk
Descrizione Displays an icon if the current page has an official shortlink and makes it easy to copy!
Dimensione del File 42.51 KB
Conteggio Installazioni 23
Versione Corrente 1.1
Ultimo Aggiornamento 2014-07-11
Data di Pubblicazione 2014-07-11
Valutazione 2.33/5 Totale 3 Valutazioni
Sviluppatore http://joe.gl
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/glombek/ShortlinkExtension
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shortlink Finder",
    "version": "1.1",
    "description": "Displays an icon if the current page has an official shortlink and makes it easy to copy!",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content_script.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "icon-19.png",
        "default_title": "Get Shortlink",
        "default_popup": "popup.html"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "clipboardWrite"
    ],
    "icons": {
        "19": "icon-19.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}