Shortlink Finder

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

Co je Shortlink Finder?

Shortlink Finder je rozšíření Chrome vyvinuté http://joe.gl, a jeho hlavní funkcí je „Displays an icon if the current page has an official shortlink and makes it easy to copy!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Shortlink Finder

Stáhněte si soubory rozšíření Shortlink Finder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
Oficiální URL https://chrome.google.com/webstore/detail/shortlink-finder/gjbgaoobcdohajkkcanaemikngkaojbk
Popis Displays an icon if the current page has an official shortlink and makes it easy to copy!
Velikost souboru 42.51 KB
Počet instalací 23
Aktuální Verze 1.1
Poslední Aktualizace 2014-07-11
Datum Vydání 2014-07-11
Hodnocení 2.33/5 Celkem 3 Hodnocení
Vývojář http://joe.gl
Typ Platby free
Webové stránky Rozšíření https://github.com/glombek/ShortlinkExtension
Podporované Jazyky 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
}