fragment

A tool for getting URLs of page fragments

fragment là gì?

fragment là một tiện ích mở rộng Chrome được phát triển bởi jmajnert, và tính năng chính của nó là "A tool for getting URLs of page fragments".

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

screenshot
screenshot
screenshot

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

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

                        This extension allows you to quickly copy a fragment URL to a piece of a web page, for example a section in an article in wikipedia.
To use it, turn it on, hover over the desired section (it should be highlighted in red) and click. The appropriate fragment URL is copied into the system's clipboard.
Code available here: https://github.com/jmajnert/fragment                    

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

Tên fragment fragment
ID onabdcmognnippccjhcomlaniijgmkie
URL Chính Thức https://chromewebstore.google.com/detail/fragment/onabdcmognnippccjhcomlaniijgmkie
Mô tả A tool for getting URLs of page fragments
Kích Thước Tệp 7.11 KB
Số Lần Cài Đặt 86
Phiên Bản Hiện Tại 0.5
Cập Nhật Lần Cuối 2015-07-17
Ngày Phát Hành 2015-07-17
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển jmajnert
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "fragment",
    "description": "A tool for getting URLs of page fragments",
    "version": "0.5",
    "author": "Janusz Majnert",
    "permissions": [
        "activeTab",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Get fragment URL",
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2
}