Web Page Highlighter
Highlight text on Web Page and Generate URL (Link) with the Highlighted text.
O que é Web Page Highlighter?
Web Page Highlighter é uma extensão do Chrome desenvolvida por https://7labs.io, e sua principal característica é "Highlight text on Web Page and Generate URL (Link) with the Highlighted text.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Web Page Highlighter
Baixe arquivos de extensão Web Page Highlighter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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)
Informações Básicas da Extensão
Nome | Web Page Highlighter |
ID | poemphopblfbpoaoglhbljbjfodofmpa |
URL Oficial | https://chromewebstore.google.com/detail/web-page-highlighter/poemphopblfbpoaoglhbljbjfodofmpa |
Descrição | Highlight text on Web Page and Generate URL (Link) with the Highlighted text. |
Tamanho do Arquivo | 11.42 KB |
Contagem de Instalações | 1,729 |
Versão Atual | 1.0.0 |
Última Atualização | 2021-02-15 |
Data de Publicação | 2020-06-08 |
Classificação | 4.25/5 Total de 16 Avaliações |
Desenvolvedor | https://7labs.io |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://7labs.io/ |
URL da Página de Ajuda | https://7labs.io/contact |
URL da Página de Política de Privacidade | https://7labs.io/privacy |
Idiomas Suportados | 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" ] } |