Web Page Highlighter

Highlight text on Web Page and Generate URL (Link) with the Highlighted text.

Web Page Highlighter란 무엇입니까?

Web Page Highlighter은(는) https://7labs.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlight text on Web Page and Generate URL (Link) with the Highlighted text."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Web Page Highlighter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Web Page Highlighter for Google Chrome allows a user to highlight a selected text fragment on a web page and generate a URL that automatically scrolls to the highlighted portion of the web page.

It is based on Chrome's native Scroll To Text Fragment feature. You might have noticed that clicking on Google Search results automatically takes you to a highlighted text fragment within the web page. This extension uses the same feature to highlight custom text.

Once the extension is installed, simply follow the steps below to generate the custom URL with highlighted text.

1. Select text on a web page
2. Right-click on the selection
3. Select "Copy URL with Highlighted text”

The copied URL will scroll the web page to the highlighted text fragment.

Features:

- Multi-paragraph selection support
- Optimized URL string
- Works natively with the latest version of Chrome on six Blink Platforms (Windows, Mac, Linux, Chrome OS, Android, and Android WebView).

References:
1. Scroll To Text Fragment | Official Notes - https://chromestatus.com/feature/4733392803332096
2. Blink Platforms - https://en.wikipedia.org/wiki/Blink_(browser_engine)                    

확장 프로그램 기본 정보

이름 Web Page Highlighter Web Page Highlighter
ID poemphopblfbpoaoglhbljbjfodofmpa
공식 URL https://chromewebstore.google.com/detail/web-page-highlighter/poemphopblfbpoaoglhbljbjfodofmpa
설명 Highlight text on Web Page and Generate URL (Link) with the Highlighted text.
파일 크기 11.42 KB
설치 횟수 1,729
현재 버전 1.0.0
최근 업데이트 2021-02-15
출시 날짜 2020-06-08
평점 4.25/5 총 16 개의 평점
개발자 https://7labs.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://7labs.io/
도움말 페이지 URL https://7labs.io/contact
개인정보 보호 정책 페이지 URL https://7labs.io/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Page Highlighter",
    "version": "1.0.0",
    "description": "Highlight text on Web Page and Generate URL (Link) with the Highlighted text.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "images\/logo.png"
        }
    },
    "icons": {
        "16": "images\/logo.png",
        "32": "images\/logo.png",
        "48": "images\/logo.png",
        "128": "images\/logo.png"
    },
    "manifest_version": 2,
    "permissions": [
        "contextMenus"
    ]
}