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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}