Shortlink Finder

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

Wat is Shortlink Finder?

Shortlink Finder is een Chrome-extensie ontwikkeld door http://joe.gl, en de belangrijkste functie is "Displays an icon if the current page has an official shortlink and makes it easy to copy!".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Shortlink Finder

Download Shortlink Finder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
Officiële URL https://chrome.google.com/webstore/detail/shortlink-finder/gjbgaoobcdohajkkcanaemikngkaojbk
Beschrijving Displays an icon if the current page has an official shortlink and makes it easy to copy!
Bestandsgrootte 42.51 KB
Aantal Installaties 23
Huidige Versie 1.1
Laatst Bijgewerkt 2014-07-11
Publicatiedatum 2014-07-11
Beoordeling 2.33/5 Totaal 3 Beoordelingen
Ontwikkelaar http://joe.gl
Betalingswijze free
Extensiewebsite https://github.com/glombek/ShortlinkExtension
Ondersteunde Talen 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
}