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.

Was ist Always Copy?

Always Copy ist eine Chrome-Erweiterung, die von japamat entwickelt wurde, und ihr Hauptmerkmal ist "A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.".

Erweiterungsscreenshots

screenshot

Always Copy-Erweiterungs-CRX-Datei herunterladen

Laden Sie Always Copy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Always Copy Always Copy
ID pfiieiadpcemdkcaaicekbiokgnojnim
Offizielle URL https://chromewebstore.google.com/detail/always-copy/pfiieiadpcemdkcaaicekbiokgnojnim
Beschreibung A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.
Dateigröße 6.92 KB
Installationsanzahl 288
Aktuelle Version 1.0
Letztes Update 2020-06-17
Veröffentlichungsdatum 2020-06-16
Entwickler japamat
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}