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
}