Shortlink Finder

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

Shortlink Finder là gì?

Shortlink Finder là một tiện ích mở rộng Chrome được phát triển bởi http://joe.gl, và tính năng chính của nó là "Displays an icon if the current page has an official shortlink and makes it easy to copy!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Shortlink Finder

Tải xuống các tệp mở rộng Shortlink Finder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
URL Chính Thức https://chrome.google.com/webstore/detail/shortlink-finder/gjbgaoobcdohajkkcanaemikngkaojbk
Mô tả Displays an icon if the current page has an official shortlink and makes it easy to copy!
Kích Thước Tệp 42.51 KB
Số Lần Cài Đặt 23
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2014-07-11
Ngày Phát Hành 2014-07-11
Đánh Giá 2.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển http://joe.gl
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/glombek/ShortlinkExtension
Ngôn Ngữ Được Hỗ Trợ 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
}