Hyper Gwent

Detects and show tooltips for Gwent cards in the pages you visit.

Hyper Gwent là gì?

Hyper Gwent là một tiện ích mở rộng Chrome được phát triển bởi Soreine, và tính năng chính của nó là "Detects and show tooltips for Gwent cards in the pages you visit.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hyper Gwent

Tải xuống các tệp mở rộng Hyper Gwent 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

                        Hyper Gwent detects Gwent card names in the page you visit and highlights them. Hovering any card name shows the card art and description.

The extension is fast. It is permissive and tries to match plurals, inexact spellings ("ciri dash" instead of "Ciri: Dash"), and even common appellation for cards ("ADC", "gigni" etc.). You can also choose on which sites the extension should run.

Feature list:

- Enabled on any website with a simple click. It is enabled by default on r/gwent, but can be enabled on messenger.com for example.
- Includes all existing cards, up to date with the latest patch.
- Recognizes abbreviations, acronyms, plurals, missing capitals, missing accents, missing punctuation, and common typos.
- Non obstrusive. Add subtle highlights and does not break links.
- Fast. You could enable it on any website, you would not feel it's here.

About permissions:

You may be worried by the permissions requested by the extensions. I did my best to limit the required permissions to the minimum. You can find a detailed explanation here: https://soreine.dev/hyper-gwent/faq/#security                    

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

Tên Hyper Gwent Hyper Gwent
ID ihaocjeiipaghnmnagdnacpeaeljgneo
URL Chính Thức https://chromewebstore.google.com/detail/hyper-gwent/ihaocjeiipaghnmnagdnacpeaeljgneo
Mô tả Detects and show tooltips for Gwent cards in the pages you visit.
Kích Thước Tệp 2.53 MB
Số Lần Cài Đặt 81
Phiên Bản Hiện Tại 2.1.2
Cập Nhật Lần Cuối 2019-05-11
Ngày Phát Hành 2019-05-11
Đánh Giá 5.00/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Soreine
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://soreine.dev/hyper-gwent/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Soreine & Zhouzi",
    "homepage_url": "https:\/\/soreine.dev\/hyper-gwent",
    "name": "Hyper Gwent",
    "description": "Detects and show tooltips for Gwent cards in the pages you visit.",
    "version": "2.1.2",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "40": "icon40.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "webNavigation",
        "https:\/\/soreine.dev\/hyper-gwent\/*",
        "https:\/\/soreine.github.io\/hyper-gwent\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "40": "icon40.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "web_accessible_resources": [
        "*.png",
        "*.woff2"
    ]
}