Copy Text Fragment URL
Copy a link to any highlighted text just by right-clicking.
Co to jest Copy Text Fragment URL?
Copy Text Fragment URL to rozszerzenie Chrome opracowane przez Andrew Rabon, a jego główną funkcją jest „Copy a link to any highlighted text just by right-clicking.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Copy Text Fragment URL
Pobierz pliki rozszerzeń Copy Text Fragment URL w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
As of version 80, Chromium has a fancy new feature called "scroll to text fragment," letting you jump to anywhere in the page given specified text. This extension wraps that functionality, letting you highlight and right-click to easily copy a URL to where that text is on the page.
Inspired by and built for the Web's loyal vanguard and general lovable weirdo, Bruce Lawson. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | bemdbglmlhlkmkgfnleiofphhekephnm |
| Oficjalny URL | https://chromewebstore.google.com/detail/copy-text-fragment-url/bemdbglmlhlkmkgfnleiofphhekephnm |
| Opis | Copy a link to any highlighted text just by right-clicking. |
| Rozmiar pliku | 148 KB |
| Liczba instalacji | 371 |
| Aktualna Wersja | 1.0.1 |
| Ostatnia Aktualizacja | 2020-03-12 |
| Data Publikacji | 2020-03-11 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | Andrew Rabon |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/andrewrabon/copy-text-fragment-url |
| Adres URL Strony Pomocy | https://github.com/andrewrabon/copy-text-fragment-url/issues |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Copy Text Fragment URL",
"version": "1.0.1",
"description": "Copy a link to any highlighted text just by right-clicking.",
"manifest_version": 2,
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"64": "icons\/64.png",
"128": "icons\/128.png",
"512": "icons\/512.png"
},
"background": {
"scripts": [
"dist\/backgroundScript.js"
],
"persistent": false
},
"permissions": [
"clipboardRead",
"clipboardWrite",
"contextMenus"
]
} | |