BoradGameGeek Image Viewer

Browse BGG image by a popup image viewer.

Apa itu BoradGameGeek Image Viewer?

BoradGameGeek Image Viewer adalah ekstensi Chrome yang dikembangkan oleh Neil Hsu, dan fitur utamanya adalah "Browse BGG image by a popup image viewer.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi BoradGameGeek Image Viewer

Unduh file ekstensi BoradGameGeek Image Viewer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama BoradGameGeek Image Viewer BoradGameGeek Image Viewer
ID bnbkfponohpobjnkglgbiojemigolnhf
URL Resmi https://chromewebstore.google.com/detail/boradgamegeek-image-viewe/bnbkfponohpobjnkglgbiojemigolnhf
Deskripsi Browse BGG image by a popup image viewer.
Ukuran File 52.08 KB
Jumlah Instalasi 185
Versi Saat Ini 1.2
Terakhir Diperbarui 2012-08-27
Tanggal Publikasi 2012-08-26
Penilaian 4.80/5 Total 5 Penilaian
Pengembang Neil Hsu
Tipe Pembayaran free
Bahasa yang Didukung 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
        }
    ]
}