Hyper Gwent
Detects and show tooltips for Gwent cards in the pages you visit.
Hyper Gwent란 무엇입니까?
Hyper Gwent은(는) Soreine에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Detects and show tooltips for Gwent cards in the pages you visit."입니다.
확장 프로그램 스크린샷
Hyper Gwent 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Hyper Gwent |
ID | ihaocjeiipaghnmnagdnacpeaeljgneo |
공식 URL | https://chromewebstore.google.com/detail/hyper-gwent/ihaocjeiipaghnmnagdnacpeaeljgneo |
설명 | Detects and show tooltips for Gwent cards in the pages you visit. |
파일 크기 | 2.53 MB |
설치 횟수 | 81 |
현재 버전 | 2.1.2 |
최근 업데이트 | 2019-05-11 |
출시 날짜 | 2019-05-11 |
평점 | 5.00/5 총 10 개의 평점 |
개발자 | Soreine |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://soreine.dev/hyper-gwent/ |
지원되는 언어 | 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" ] } |