Shortlink Finder

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

What is Shortlink Finder?

Shortlink Finder is a Chrome extension developed by http://joe.gl, and its main feature is "Displays an icon if the current page has an official shortlink and makes it easy to copy!".

Extension Screenshots

screenshot

Download Shortlink Finder Extension CRX File

Download Shortlink Finder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
Official URL 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!
File Size 42.51 KB
Installation Count 23
Current Version 1.1
Last Updated 2014-07-11
Publish Date 2014-07-11
Rating 2.33/5 Total 3 Ratings
Developer http://joe.gl
Payment Type free
Extension Website https://github.com/glombek/ShortlinkExtension
Supported Languages 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
}