Magic Clipboard

Create your own custom clipboard with ease

Was ist Magic Clipboard?

Magic Clipboard ist eine Chrome-Erweiterung, die von panagiotis.geor.dev entwickelt wurde, und ihr Hauptmerkmal ist "Create your own custom clipboard with ease".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Magic Clipboard-Erweiterungs-CRX-Datei herunterladen

Laden Sie Magic Clipboard-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

                        With Magic Clipboard you can easily create your own custom clipboard easily by creating a JSON representation for it.

The Magic Clipboard can be accessed through the chrome context menu and its particularly useful to people who have to fill out long forms or who frequently have to fill forms with the same data.                    

Grundlegende Informationen zur Erweiterung

Name Magic Clipboard Magic Clipboard
ID hpcejjdpbbkhhomlngbiloifbkdaagpg
Offizielle URL https://chromewebstore.google.com/detail/magic-clipboard/hpcejjdpbbkhhomlngbiloifbkdaagpg
Beschreibung Create your own custom clipboard with ease
Dateigröße 68.86 KB
Installationsanzahl 27
Aktuelle Version 1.0.2
Letztes Update 2020-11-29
Veröffentlichungsdatum 2020-11-19
Entwickler panagiotis.geor.dev
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Magic Clipboard",
    "description": "Create your own custom clipboard with ease",
    "version": "1.0.2",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": "icons\/16.png",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "scripts": [
            "background\/index.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts\/index.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "unlimitedStorage"
    ]
}