Shortlink Finder

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

Apa itu Shortlink Finder?

Shortlink Finder adalah ekstensi Chrome yang dikembangkan oleh http://joe.gl, dan fitur utamanya adalah "Displays an icon if the current page has an official shortlink and makes it easy to copy!".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Shortlink Finder

Unduh file ekstensi Shortlink Finder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
URL Resmi https://chrome.google.com/webstore/detail/shortlink-finder/gjbgaoobcdohajkkcanaemikngkaojbk
Deskripsi Displays an icon if the current page has an official shortlink and makes it easy to copy!
Ukuran File 42.51 KB
Jumlah Instalasi 23
Versi Saat Ini 1.1
Terakhir Diperbarui 2014-07-11
Tanggal Publikasi 2014-07-11
Penilaian 2.33/5 Total 3 Penilaian
Pengembang http://joe.gl
Tipe Pembayaran free
Situs Ekstensi https://github.com/glombek/ShortlinkExtension
Bahasa yang Didukung 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
}