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.

Qu'est-ce que Always Copy ?

Always Copy est une extension Chrome développée par japamat, et sa fonction principale est "A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Always Copy

Téléchargez les fichiers d'extension Always Copy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Always Copy Always Copy
ID pfiieiadpcemdkcaaicekbiokgnojnim
URL Officiel https://chromewebstore.google.com/detail/always-copy/pfiieiadpcemdkcaaicekbiokgnojnim
Description A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.
Taille du Fichier 6.92 KB
Nombre d'Installations 288
Version Actuelle 1.0
Dernière Mise à Jour 2020-06-17
Date de Publication 2020-06-16
Développeur japamat
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}