Magic Clipboard

Create your own custom clipboard with ease

Hvad er Magic Clipboard?

Magic Clipboard er en Chrome-udvidelse udviklet af panagiotis.geor.dev, og dens hovedfunktion er "Create your own custom clipboard with ease".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Magic Clipboard-udvidelses-CRX-fil

Download Magic Clipboard-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

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Magic Clipboard Magic Clipboard
ID hpcejjdpbbkhhomlngbiloifbkdaagpg
Officiel URL https://chromewebstore.google.com/detail/magic-clipboard/hpcejjdpbbkhhomlngbiloifbkdaagpg
Beskrivelse Create your own custom clipboard with ease
Filstørrelse 68.86 KB
Antal Installationer 27
Nuværende Version 1.0.2
Senest Opdateret 2020-11-29
Udgivelsesdato 2020-11-19
Udvikler panagiotis.geor.dev
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}