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
官方URL 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"
}