STTF Url Generator
Generate a url with text fragment and copy it to the clipboard or open it in a new tab.
O que é STTF Url Generator?
STTF Url Generator é uma extensão do Chrome desenvolvida por Chun Liu, e sua principal característica é "Generate a url with text fragment and copy it to the clipboard or open it in a new tab.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão STTF Url Generator
Baixe arquivos de extensão STTF Url Generator 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
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.
Informações Básicas da Extensão
Nome | STTF Url Generator |
ID | mlihnffnlcfgjkkmigdgahgpfpfddafo |
URL Oficial | https://chromewebstore.google.com/detail/sttf-url-generator/mlihnffnlcfgjkkmigdgahgpfpfddafo |
Descrição | Generate a url with text fragment and copy it to the clipboard or open it in a new tab. |
Tamanho do Arquivo | 12.9 KB |
Contagem de Instalações | 201 |
Versão Atual | 1.3 |
Última Atualização | 2020-07-05 |
Data de Publicação | 2020-07-04 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | Chun Liu |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://chunliu.github.io/sttf-url-generator/ |
URL da Página de Ajuda | https://github.com/chunliu/sttf-url-generator/issues |
Idiomas Suportados | 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" } |