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文件
下載BoradGameGeek Image Viewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | bnbkfponohpobjnkglgbiojemigolnhf |
| 官方網址 | 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
}
]
} | |