STTF Url Generator

Generate a url with text fragment and copy it to the clipboard or open it in a new tab.

STTF Url Generator là gì?

STTF Url Generator là một tiện ích mở rộng Chrome được phát triển bởi Chun Liu, và tính năng chính của nó là "Generate a url with text fragment and copy it to the clipboard or open it in a new tab.".

Ả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 STTF Url Generator

Tải xuống các tệp mở rộng STTF Url Generator 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 helps to generate a url with the text fragment in it based on the selected text on the web page, and then copies the generated url to the clipboard or opens it in a new tab based on users' action. With this url, the browser will automatically scroll to and highlight the text fragment on the page so that users would be able to find the text more quickly and accurately. 

Features: 
- Copy the text fragment url to the clipboard. 
- Multiple text fragment support: open the 1st text fragment url in a new tab, select the 2nd text fragment and generate the url. Repeat if there are more text fragment you want to select. 
- Copy the select text and the generated url in Markdown format.                    

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

Tên STTF Url Generator STTF Url Generator
ID mlihnffnlcfgjkkmigdgahgpfpfddafo
URL Chính Thức https://chromewebstore.google.com/detail/sttf-url-generator/mlihnffnlcfgjkkmigdgahgpfpfddafo
Mô tả Generate a url with text fragment and copy it to the clipboard or open it in a new tab.
Kích Thước Tệp 12.9 KB
Số Lần Cài Đặt 201
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2020-07-05
Ngày Phát Hành 2020-07-04
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Chun Liu
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://chunliu.github.io/sttf-url-generator/
URL Trang Trợ Giúp https://github.com/chunliu/sttf-url-generator/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "STTF Url Generator",
    "version": "1.3",
    "author": "Chun Liu",
    "description": "Generate a url with text fragment and copy it to the clipboard or open it in a new tab.",
    "permissions": [
        "clipboardWrite",
        "contextMenus",
        "activeTab",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "images\/sttf-url16.png",
        "32": "images\/sttf-url32.png",
        "48": "images\/sttf-url48.png",
        "128": "images\/sttf-url128.png"
    },
    "minimum_chrome_version": "80"
}