Copy Text Fragment URL
Copy a link to any highlighted text just by right-clicking.
Vad är Copy Text Fragment URL?
Copy Text Fragment URL är en Chrome-tillägg utvecklad av Andrew Rabon, och dess huvudfunktion är "Copy a link to any highlighted text just by right-clicking.".
Tilläggsskärmbilder
Ladda ner Copy Text Fragment URL-förlängningens CRX-fil
Ladda ner Copy Text Fragment URL-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | bemdbglmlhlkmkgfnleiofphhekephnm |
| Officiell webbadress | https://chromewebstore.google.com/detail/copy-text-fragment-url/bemdbglmlhlkmkgfnleiofphhekephnm |
| Beskrivning | Copy a link to any highlighted text just by right-clicking. |
| Filstorlek | 148 KB |
| Antal Installationer | 371 |
| Aktuell Version | 1.0.1 |
| Senast Uppdaterad | 2020-03-12 |
| Publiceringsdatum | 2020-03-11 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | Andrew Rabon |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/andrewrabon/copy-text-fragment-url |
| Hjälpsida URL | https://github.com/andrewrabon/copy-text-fragment-url/issues |
| Stödda Språk | 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"
]
} | |