Shortlink Finder

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

Hvad er Shortlink Finder?

Shortlink Finder er en Chrome-udvidelse udviklet af http://joe.gl, og dens hovedfunktion er "Displays an icon if the current page has an official shortlink and makes it easy to copy!".

Udvidelsesskærmbilleder

screenshot

Download Shortlink Finder-udvidelses-CRX-fil

Download Shortlink Finder-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
Officiel URL https://chrome.google.com/webstore/detail/shortlink-finder/gjbgaoobcdohajkkcanaemikngkaojbk
Beskrivelse Displays an icon if the current page has an official shortlink and makes it easy to copy!
Filstørrelse 42.51 KB
Antal Installationer 23
Nuværende Version 1.1
Senest Opdateret 2014-07-11
Udgivelsesdato 2014-07-11
Bedømmelse 2.33/5 Samlet 3 Bedømmelser
Udvikler http://joe.gl
Betalingsmetode free
Udvidelseswebsted https://github.com/glombek/ShortlinkExtension
Understøttede Sprog 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
}