Shortlink Finder

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

Qu'est-ce que Shortlink Finder ?

Shortlink Finder est une extension Chrome développée par http://joe.gl, et sa fonction principale est "Displays an icon if the current page has an official shortlink and makes it easy to copy!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Shortlink Finder

Téléchargez les fichiers d'extension Shortlink Finder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
URL Officiel https://chrome.google.com/webstore/detail/shortlink-finder/gjbgaoobcdohajkkcanaemikngkaojbk
Description Displays an icon if the current page has an official shortlink and makes it easy to copy!
Taille du Fichier 42.51 KB
Nombre d'Installations 23
Version Actuelle 1.1
Dernière Mise à Jour 2014-07-11
Date de Publication 2014-07-11
Évaluation 2.33/5 Total 3 Évaluations
Développeur http://joe.gl
Type de Paiement free
Site Web de l'Extension https://github.com/glombek/ShortlinkExtension
Langues Prises en Charge 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
}