Copy Link Text

Copies the text inside links

Cos'è Copy Link Text?

Copy Link Text è un'estensione di Chrome sviluppata da vestakuphal285, e la sua funzione principale è "Copies the text inside links".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Copy Link Text

Scarica i file di estensione Copy Link Text in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Copy Link Text Copy Link Text
ID loeniidbmeohdlmipbpkfmiogbcncibh
URL Ufficiale https://chromewebstore.google.com/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh
Descrizione Copies the text inside links
Dimensione del File 565 KB
Conteggio Installazioni 30,654
Versione Corrente 3.0.1
Ultimo Aggiornamento 2023-11-20
Data di Pubblicazione 2020-09-25
Valutazione 3.23/5 Totale 78 Valutazioni
Sviluppatore vestakuphal285
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://sites.google.com/view/pass-generator-2023/home
Lingue Supportate 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"
    }
}