Copy Text Fragment URL

Copy a link to any highlighted text just by right-clicking.

Hvad er Copy Text Fragment URL?

Copy Text Fragment URL er en Chrome-udvidelse udviklet af Andrew Rabon, og dens hovedfunktion er "Copy a link to any highlighted text just by right-clicking.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Copy Text Fragment URL-udvidelses-CRX-fil

Download Copy Text Fragment URL-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Copy Text Fragment URL Copy Text Fragment URL
ID bemdbglmlhlkmkgfnleiofphhekephnm
Officiel URL https://chromewebstore.google.com/detail/copy-text-fragment-url/bemdbglmlhlkmkgfnleiofphhekephnm
Beskrivelse Copy a link to any highlighted text just by right-clicking.
Filstørrelse 148 KB
Antal Installationer 371
Nuværende Version 1.0.1
Senest Opdateret 2020-03-12
Udgivelsesdato 2020-03-11
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Andrew Rabon
Betalingsmetode free
Udvidelseswebsted https://github.com/andrewrabon/copy-text-fragment-url
Hjælpeside-URL https://github.com/andrewrabon/copy-text-fragment-url/issues
Understøttede Sprog 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"
    ]
}