Copy Link Text

Copies the text inside links

Was ist Copy Link Text?

Copy Link Text ist eine Chrome-Erweiterung, die von vestakuphal285 entwickelt wurde, und ihr Hauptmerkmal ist "Copies the text inside links".

Erweiterungsscreenshots

screenshot
screenshot

Copy Link Text-Erweiterungs-CRX-Datei herunterladen

Laden Sie Copy Link Text-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Enables you to copy the text of a link within the context menu.
Just right click on the link and select "Copy link text".

Update ver: 1.12.1
 - Added copy text link history management feature, can review, export file txt and delete log history.
 - You can also share the copy text link history including text and link for you on social networks such as Twitter, LinkedIn and Facebook (automatically share using post api).                    

Grundlegende Informationen zur Erweiterung

Name Copy Link Text Copy Link Text
ID loeniidbmeohdlmipbpkfmiogbcncibh
Offizielle URL https://chromewebstore.google.com/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh
Beschreibung Copies the text inside links
Dateigröße 565 KB
Installationsanzahl 30,654
Aktuelle Version 3.0.1
Letztes Update 2023-11-20
Veröffentlichungsdatum 2020-09-25
Bewertung 3.23/5 Insgesamt 78 Bewertungen
Entwickler vestakuphal285
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://sites.google.com/view/pass-generator-2023/home
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Link Text",
    "description": "Copies the text inside links",
    "default_locale": "en",
    "version": "3.0.1",
    "icons": {
        "16": ".\/icon-128.png",
        "48": ".\/icon-128.png",
        "128": ".\/icon-128.png"
    },
    "content_scripts": [
        {
            "css": [
                ".\/content-style.css"
            ],
            "js": [
                ".\/js\/content_script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.facebook.com\/*",
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.linkedin.com\/*",
        "*:\/\/anotepad.com\/*"
    ],
    "permissions": [
        "declarativeNetRequest",
        "storage",
        "contextMenus"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    }
}