Copy Element Text

Copies the text inside elements

Τι είναι το Copy Element Text;

Το Copy Element Text είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mistweaver.co, και η κύρια λειτουργία του είναι "Copies the text inside elements".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Copy Element Text

Λήψη αρχείων επέκτασης Copy Element Text σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Full source-code available here: https://github.com/mistweaverco/copy-element-text

If you're looking for a "copy a link text" extension, head over to the companion extension here:

Copy Link Text
https://chrome.google.com/webstore/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh?hl=en                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
Επίσημο URL https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
Περιγραφή Copies the text inside elements
Μέγεθος Αρχείου 41.63 KB
Αριθμός Εγκαταστάσεων 564
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2022-10-19
Ημερομηνία Δημοσίευσης 2022-10-03
Αξιολόγηση 3.60/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής mistweaver.co
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Element Text",
    "version": "1.0.0",
    "description": "Copies the text inside elements",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon-32.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "boot.js"
            ]
        }
    ]
}