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?

STTF Url Generator是由Chun Liu開發的Chrome擴展程式,該擴展的主要功能是“Generate a url with text fragment and copy it to the clipboard or open it in a new tab.”。

擴展截圖

screenshot

下載STTF Url Generator擴展crx文件

下載STTF Url Generator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 STTF Url Generator STTF Url Generator
ID mlihnffnlcfgjkkmigdgahgpfpfddafo
官方網址 https://chromewebstore.google.com/detail/sttf-url-generator/mlihnffnlcfgjkkmigdgahgpfpfddafo
簡介 Generate a url with text fragment and copy it to the clipboard or open it in a new tab.
檔案大小 12.9 KB
安裝次數 201
目前版本 1.3
更新時間 2020-07-05
上架時間 2020-07-04
評分 5.00/5 共 4 次評分
開發者 Chun Liu
電子郵箱 [email protected]
付費類型 free
擴展官網 https://chunliu.github.io/sttf-url-generator/
說明頁面URL https://github.com/chunliu/sttf-url-generator/issues
支援的語言 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"
}