Shortlink Finder

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

Was ist Shortlink Finder?

Shortlink Finder ist eine Chrome-Erweiterung, die von http://joe.gl entwickelt wurde, und ihr Hauptmerkmal ist "Displays an icon if the current page has an official shortlink and makes it easy to copy!".

Erweiterungsscreenshots

screenshot

Shortlink Finder-Erweiterungs-CRX-Datei herunterladen

Laden Sie Shortlink Finder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
Offizielle URL https://chrome.google.com/webstore/detail/shortlink-finder/gjbgaoobcdohajkkcanaemikngkaojbk
Beschreibung Displays an icon if the current page has an official shortlink and makes it easy to copy!
Dateigröße 42.51 KB
Installationsanzahl 23
Aktuelle Version 1.1
Letztes Update 2014-07-11
Veröffentlichungsdatum 2014-07-11
Bewertung 2.33/5 Insgesamt 3 Bewertungen
Entwickler http://joe.gl
Zahlungsart free
Erweiterungswebsite https://github.com/glombek/ShortlinkExtension
Unterstützte Sprachen 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
}