Shortlink Finder

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

Co to jest Shortlink Finder?

Shortlink Finder to rozszerzenie Chrome opracowane przez http://joe.gl, a jego główną funkcją jest „Displays an icon if the current page has an official shortlink and makes it easy to copy!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Shortlink Finder

Pobierz pliki rozszerzeń Shortlink Finder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
Oficjalny URL https://chrome.google.com/webstore/detail/shortlink-finder/gjbgaoobcdohajkkcanaemikngkaojbk
Opis Displays an icon if the current page has an official shortlink and makes it easy to copy!
Rozmiar pliku 42.51 KB
Liczba instalacji 23
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2014-07-11
Data Publikacji 2014-07-11
Ocena 2.33/5 Łącznie 3 Oceny
Deweloper http://joe.gl
Typ Płatności free
Strona Rozszerzenia https://github.com/glombek/ShortlinkExtension
Obsługiwane Języki 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
}