Linkable

Provides a permalink to certain webpages.

Linkable là gì?

Linkable là một tiện ích mở rộng Chrome được phát triển bởi daleyjem, và tính năng chính của nó là "Provides a permalink to certain webpages.".

Ả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 Linkable

Tải xuống các tệp mở rộng Linkable 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

                        Parses HTML elements on a page with an id attribute. A hashed URL (i.e. "http://www.site.com/#section") can quickly be copied to the clipboard.                    

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

Tên Linkable Linkable
ID ndnlgncfhnlimohdlfkgadmanpnmpbbe
URL Chính Thức https://chromewebstore.google.com/detail/linkable/ndnlgncfhnlimohdlfkgadmanpnmpbbe
Mô tả Provides a permalink to certain webpages.
Kích Thước Tệp 10.8 KB
Số Lần Cài Đặt 330
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-06-02
Ngày Phát Hành 2016-06-02
Nhà Phát Triển daleyjem
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Linkable",
    "author": "Jeremy Daley",
    "version": "1.0",
    "description": "Provides a permalink to certain webpages.",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_title": "Show\/hide linkable items",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "main.js",
                "clipboard.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "link.svg"
    ]
}