Copy Link Text

Copies the text inside links

Qu'est-ce que Copy Link Text ?

Copy Link Text est une extension Chrome développée par vestakuphal285, et sa fonction principale est "Copies the text inside links".

Captures d'Écran de l'Extension

screenshot
screenshot

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

Téléchargez les fichiers d'extension Copy Link Text 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

                        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).                    

Informations de Base sur l'Extension

Nom Copy Link Text Copy Link Text
ID loeniidbmeohdlmipbpkfmiogbcncibh
URL Officiel https://chromewebstore.google.com/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh
Description Copies the text inside links
Taille du Fichier 565 KB
Nombre d'Installations 30,654
Version Actuelle 3.0.1
Dernière Mise à Jour 2023-11-20
Date de Publication 2020-09-25
Évaluation 3.23/5 Total 78 Évaluations
Développeur vestakuphal285
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://sites.google.com/view/pass-generator-2023/home
Langues Prises en Charge 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"
    }
}