Copy Link Name

Copies the name of a link (anchor text) to the clipboard.

Qu'est-ce que Copy Link Name ?

Copy Link Name est une extension Chrome développée par https://www.adelsaoud.com, et sa fonction principale est "Copies the name of a link (anchor text) to the clipboard.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Copy Link Name

Téléchargez les fichiers d'extension Copy Link Name au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Developed exclusively for Chrome. This extension is not guaranteed to work with other Chromium-based browsers like Edge, Brave, Opera, etc... Please don't report issues or down-vote this extension in the Chrome Web Store if you're using a non-Chrome browser.

Makes it very easy to copy the visible text of a link (also called link name or anchor text).
Just right click on a link & choose "Copy Link Name".

Note: Like all Content Script extensions, this extension is automatically disabled in the Chrome Extensions site. So please test it on a normal web page.                    

Informations de Base sur l'Extension

Nom Copy Link Name Copy Link Name
ID mafjnaphoepgijmgfeemillelgkeigid
URL Officiel https://chromewebstore.google.com/detail/copy-link-name/mafjnaphoepgijmgfeemillelgkeigid
Description Copies the name of a link (anchor text) to the clipboard.
Taille du Fichier 10.84 KB
Nombre d'Installations 7,162
Version Actuelle 1.0.8
Dernière Mise à Jour 2023-09-14
Date de Publication 2016-10-14
Évaluation 3.33/5 Total 109 Évaluations
Développeur https://www.adelsaoud.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://www.adelsaoud.com/
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Link Name",
    "version": "1.0.8",
    "description": "Copies the name of a link (anchor text) to the clipboard.",
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "copy_link_name.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}