Shortlink Finder

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

Vad är Shortlink Finder?

Shortlink Finder är en Chrome-tillägg utvecklad av http://joe.gl, och dess huvudfunktion är "Displays an icon if the current page has an official shortlink and makes it easy to copy!".

Tilläggsskärmbilder

screenshot

Ladda ner Shortlink Finder-förlängningens CRX-fil

Ladda ner Shortlink Finder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
Officiell webbadress https://chrome.google.com/webstore/detail/shortlink-finder/gjbgaoobcdohajkkcanaemikngkaojbk
Beskrivning Displays an icon if the current page has an official shortlink and makes it easy to copy!
Filstorlek 42.51 KB
Antal Installationer 23
Aktuell Version 1.1
Senast Uppdaterad 2014-07-11
Publiceringsdatum 2014-07-11
Betyg 2.33/5 Totalt 3 Betyg
Utvecklare http://joe.gl
Betalningssätt free
Tilläggswebbplats https://github.com/glombek/ShortlinkExtension
Stödda Språk 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
}