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
官方URL 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
}