BoradGameGeek Image Viewer
Browse BGG image by a popup image viewer.
BoradGameGeek Image Viewer란 무엇입니까?
BoradGameGeek Image Viewer은(는) Neil Hsu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browse BGG image by a popup image viewer."입니다.
확장 프로그램 스크린샷
BoradGameGeek Image Viewer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Browse boardgame images rapidly and immediately. changelog: 1.2: - Apply function to new inserted image nodes when Autopagerize or AutoPatchWork is actived. 1.1: - Only works at 'http://www.boardgamegeek.com' and 'http://boardgamegeek.com' . - Change icons. 1.0: initial release.
확장 프로그램 기본 정보
이름 | BoradGameGeek Image Viewer |
ID | bnbkfponohpobjnkglgbiojemigolnhf |
공식 URL | https://chromewebstore.google.com/detail/boradgamegeek-image-viewe/bnbkfponohpobjnkglgbiojemigolnhf |
설명 | Browse BGG image by a popup image viewer. |
파일 크기 | 52.08 KB |
설치 횟수 | 185 |
현재 버전 | 1.2 |
최근 업데이트 | 2012-08-27 |
출시 날짜 | 2012-08-26 |
평점 | 4.80/5 총 5 개의 평점 |
개발자 | Neil Hsu |
결제 유형 | free |
지원되는 언어 | zh-TW |
manifest.json | |
{ "name": "BoradGameGeek Image Viewer", "version": "1.2", "manifest_version": 2, "description": "Browse BGG image by a popup image viewer. ", "background": { "page": "main.html" }, "page_action": { "default_icon": "icon-19.png", "default_title": "BGGIV" }, "permissions": [ "tabs" ], "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "matches": [ "http:\/\/boardgamegeek.com\/*", "https:\/\/boardgamegeek.com\/*", "http:\/\/www.boardgamegeek.com\/*", "https:\/\/www.boardgamegeek.com\/*" ], "js": [ "js\/jquery.min.js", "js\/bggiv.js" ], "run_at": "document_end", "all_frames": true } ] } |