Magic Clipboard

Create your own custom clipboard with ease

Vad är Magic Clipboard?

Magic Clipboard är en Chrome-tillägg utvecklad av panagiotis.geor.dev, och dess huvudfunktion är "Create your own custom clipboard with ease".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Magic Clipboard-förlängningens CRX-fil

Ladda ner Magic Clipboard-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Magic Clipboard Magic Clipboard
ID hpcejjdpbbkhhomlngbiloifbkdaagpg
Officiell webbadress https://chromewebstore.google.com/detail/magic-clipboard/hpcejjdpbbkhhomlngbiloifbkdaagpg
Beskrivning Create your own custom clipboard with ease
Filstorlek 68.86 KB
Antal Installationer 27
Aktuell Version 1.0.2
Senast Uppdaterad 2020-11-29
Publiceringsdatum 2020-11-19
Utvecklare panagiotis.geor.dev
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}