Always Copy

A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.

Hvad er Always Copy?

Always Copy er en Chrome-udvidelse udviklet af japamat, og dens hovedfunktion er "A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.".

Udvidelsesskærmbilleder

screenshot

Download Always Copy-udvidelses-CRX-fil

Download Always Copy-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Lets you copy highlighted text to your clip board even when the page doesn't allow you to do so by right clicking the traditional copy button or using ⌘ + c (windows: ctrl + c) doesn't work.                    

Grundlæggende oplysninger om udvidelsen

Navn Always Copy Always Copy
ID pfiieiadpcemdkcaaicekbiokgnojnim
Officiel URL https://chromewebstore.google.com/detail/always-copy/pfiieiadpcemdkcaaicekbiokgnojnim
Beskrivelse A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.
Filstørrelse 6.92 KB
Antal Installationer 288
Nuværende Version 1.0
Senest Opdateret 2020-06-17
Udgivelsesdato 2020-06-16
Udvikler japamat
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Always Copy",
    "version": "1.0",
    "description": "A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "16": "images\/copy_16.png",
            "32": "images\/copy_32.png",
            "48": "images\/copy_48.png",
            "128": "images\/copy_128.png"
        }
    },
    "icons": {
        "16": "images\/copy_16.png",
        "32": "images\/copy_32.png",
        "48": "images\/copy_48.png",
        "128": "images\/copy_128.png"
    },
    "manifest_version": 2
}