Copy & Paste

The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…

Was ist Copy & Paste?

Copy & Paste ist eine Chrome-Erweiterung, die von gal.bogdan2015 entwickelt wurde, und ihr Hauptmerkmal ist "The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…".

Erweiterungsscreenshots

screenshot

Copy & Paste-Erweiterungs-CRX-Datei herunterladen

Laden Sie Copy & Paste-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

                        The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have quick access to them.

Save the data you need with one click by simply copying it.

Just use Ctrl+c.                    

Grundlegende Informationen zur Erweiterung

Name Copy & Paste Copy & Paste
ID oijiikmgkljldpbpddpmhiblpgkciobn
Offizielle URL https://chromewebstore.google.com/detail/copy-paste/oijiikmgkljldpbpddpmhiblpgkciobn
Beschreibung The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…
Dateigröße 81.47 KB
Installationsanzahl 889
Aktuelle Version 1.0
Letztes Update 2020-06-29
Veröffentlichungsdatum 2020-06-28
Entwickler gal.bogdan2015
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy & Paste",
    "version": "1.0",
    "icons": {
        "32": "img\/logo32.png",
        "48": "img\/logo48.png"
    },
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "*:\/\/fonts.googleapis.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/libs\/jquery-3.2.1.min.js",
            "js\/libs\/safeResponse.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/oncopy.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Copy & Paste",
        "default_icon": "img\/logo64.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}