Text Copy

Copy all text in a tag

Vad är Text Copy?

Text Copy är en Chrome-tillägg utvecklad av textcopyext, och dess huvudfunktion är "Copy all text in a tag".

Tilläggsskärmbilder

screenshot

Ladda ner Text Copy-förlängningens CRX-fil

Ladda ner Text Copy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Text Copy allows for simple keyboard shortcuts to highlight and copy text to the clipboard. This text can be single blocks of texts, or a range of text.                    

Grundläggande Information om Tillägg

Namn Text Copy Text Copy
ID cpckijnniakijaejiimdekjdlnammgko
Officiell webbadress https://chrome.google.com/webstore/detail/text-copy/cpckijnniakijaejiimdekjdlnammgko
Beskrivning Copy all text in a tag
Filstorlek 470 KB
Antal Installationer 5,000
Aktuell Version 1.1
Senast Uppdaterad 2018-07-05
Publiceringsdatum 2018-07-05
Betyg 4.44/5 Totalt 16 Betyg
Utvecklare textcopyext
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Text Copy",
    "version": "1.1",
    "description": "Copy all text in a tag",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "manifest_version": 2,
    "permissions": [
        "",
        "tabs",
        "activeTab",
        "windows"
    ],
    "browser_action": {
        "name": "Text Copy",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/res\/jquery-2.2.0.min.js",
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "persistent": true
        }
    ]
}