wordle-emoji-exporter

Export your wordle results as emojis!

Cos'è wordle-emoji-exporter?

wordle-emoji-exporter è un'estensione di Chrome sviluppata da jakemingolla, e la sua funzione principale è "Export your wordle results as emojis!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione wordle-emoji-exporter

Scarica i file di estensione wordle-emoji-exporter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Show off your Wordle results to your friends in Slack with this easy-to-use extension! Right-click the extension icon and your results will be automatically copied to your clipboard.

View the 'Options' panel to customize emojis selected.                    

Informazioni di Base sull'Estensione

Nome wordle-emoji-exporter wordle-emoji-exporter
ID pkcpilkiingkpheafjabinjajcfmfcfc
URL Ufficiale https://chromewebstore.google.com/detail/wordle-emoji-exporter/pkcpilkiingkpheafjabinjajcfmfcfc
Descrizione Export your wordle results as emojis!
Dimensione del File 54.3 KB
Conteggio Installazioni 56
Versione Corrente 1.1.0
Ultimo Aggiornamento 2022-01-06
Data di Pubblicazione 2022-01-06
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore jakemingolla
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jakemingolla/wordle-emoji-exporter
URL della Pagina di Aiuto https://github.com/jakemingolla/wordle-emoji-exporter/issues/new
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "wordle-emoji-exporter",
    "description": "Export your wordle results as emojis!",
    "version": "1.1.0",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png",
        "192": "icons\/icon192.png",
        "512": "icons\/icon512.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "views\/popup.html"
    },
    "options_ui": {
        "page": "views\/options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.powerlanguage.co.uk\/*"
            ],
            "js": [
                "src\/content-script.js"
            ]
        }
    ]
}