IMDb Game

Challenge your knowledge of movies

IMDb Gameคืออะไร?

IMDb Game เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Danimal Labs และคุณลักษณะหลักของมันคือ "Challenge your knowledge of movies"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย IMDb Game

ดาวน์โหลดไฟล์ส่วนขยาย IMDb Game ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Challenge your knowledge of movies with the IMDb Game. Make your way through IMDb’s vast database using only filmography and cast links.

Think you are an expert at movie trivia? Create your own unique challenges to link that obscure actor to your favorite blockbuster film.

Go to imdb.com at any time to jump into a game. The IMDb Game is there when you want it and stays out of your way when you don’t.

Stay tuned for new features such as leaderboards and achievements.

**What's New**
v1.3.3
 - Bug Fixes

v1.3.2
 - Daily Challenges : Jump into a new hand-picked Challenge available every day
 - Bug Fixes

v1.2.0
 - Share Codes : Create an IMDb Game Challenge and share it with friends
 - No more goofy arrows in History view
 - Bug Fixes                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ IMDb Game IMDb Game
ID ifekbejdaadakgjffijjmbakieobaoco
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/imdb-game/ifekbejdaadakgjffijjmbakieobaoco
คำอธิบาย Challenge your knowledge of movies
ขนาดไฟล์ 1.24 MB
จำนวนการติดตั้ง 111
เวอร์ชันปัจจุบัน 1.3.3
อัปเดตครั้งล่าสุด 2018-02-03
วันที่เผยแพร่ 2018-02-03
คะแนน 4.13/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Danimal Labs
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMDb Game",
    "description": "Challenge your knowledge of movies",
    "version": "1.3.3",
    "permissions": [
        "declarativeContent",
        "tabs",
        "storage",
        "alarms",
        "https:\/\/www.imdb.com\/*",
        "http:\/\/www.imdb.com\/*",
        "https:\/\/imdb-game-api.herokuapp.com\/*"
    ],
    "browser_action": {
        "default_title": "IMDB Game",
        "default_icon": {
            "16": "resources\/images\/icon16.png",
            "48": "resources\/images\/icon48.png",
            "128": "resources\/images\/icon128.png"
        }
    },
    "icons": {
        "16": "resources\/images\/icon16.png",
        "48": "resources\/images\/icon48.png",
        "128": "resources\/images\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js",
            "imdb-ga.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.imdb.com\/*",
                "http:\/\/www.imdb.com\/*"
            ],
            "js": [
                "node_modules\/angular\/angular.min.js",
                "node_modules\/lodash\/lodash.min.js",
                "node_modules\/angular-clipboard\/angular-clipboard.js",
                "bootstrap.js",
                "app.js",
                "templates.js"
            ],
            "css": [
                "resources\/styles\/game.css",
                "node_modules\/angular\/angular-csp.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "manifest_version": 2
}