wordle-emoji-exporter

Export your wordle results as emojis!

wordle-emoji-exporter là gì?

wordle-emoji-exporter là một tiện ích mở rộng Chrome được phát triển bởi jakemingolla, và tính năng chính của nó là "Export your wordle results as emojis!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng wordle-emoji-exporter

Tải xuống các tệp mở rộng wordle-emoji-exporter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên wordle-emoji-exporter wordle-emoji-exporter
ID pkcpilkiingkpheafjabinjajcfmfcfc
URL Chính Thức https://chromewebstore.google.com/detail/wordle-emoji-exporter/pkcpilkiingkpheafjabinjajcfmfcfc
Mô tả Export your wordle results as emojis!
Kích Thước Tệp 54.3 KB
Số Lần Cài Đặt 56
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2022-01-06
Ngày Phát Hành 2022-01-06
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển jakemingolla
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jakemingolla/wordle-emoji-exporter
URL Trang Trợ Giúp https://github.com/jakemingolla/wordle-emoji-exporter/issues/new
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}