Shortlink Finder

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

什麼是Shortlink Finder?

Shortlink Finder是由http://joe.gl開發的Chrome擴展程式,該擴展的主要功能是“Displays an icon if the current page has an official shortlink and makes it easy to copy!”。

擴展截圖

screenshot

下載Shortlink Finder擴展crx文件

下載Shortlink Finder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
官方網址 https://chrome.google.com/webstore/detail/shortlink-finder/gjbgaoobcdohajkkcanaemikngkaojbk
簡介 Displays an icon if the current page has an official shortlink and makes it easy to copy!
檔案大小 42.51 KB
安裝次數 23
目前版本 1.1
更新時間 2014-07-11
上架時間 2014-07-11
評分 2.33/5 共 3 次評分
開發者 http://joe.gl
付費類型 free
擴展官網 https://github.com/glombek/ShortlinkExtension
支援的語言 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
}