IMDb ratings for watchever

Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.

IMDb ratings for watcheverคืออะไร?

IMDb ratings for watchever เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Joscha Feth และคุณลักษณะหลักของมันคือ "Enhances watchever with movie ratings from IMDb and Rotten Tomatoes."

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

screenshot

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

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

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

                        This extension seamlessly adds the ratings from IMDb and Rotten Tomatoes into the watchever web interface. Each movie and series detail page gets two more rating rows (if the movie/series can be found in IMDb). 

The IMDb ratings for watchever extension uses the Open Movie Database API by Brian Fritz (http://www.omdbapi.com/) for querying IMDb and Rotten Tomatoes. Thanks Brian!

The source code of this extension has been released under the MIT license - feel free to collaborate on enhancements and improvements here: https://github.com/joscha/watchever-imdb-ratings

Neither this extension, nor its author is in any way affiliated with Watchever GmbH.                    

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

ชื่อ IMDb ratings for watchever IMDb ratings for watchever
ID foobflajciachdjffhabgjfnommkpibb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/imdb-ratings-for-watcheve/foobflajciachdjffhabgjfnommkpibb
คำอธิบาย Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.
ขนาดไฟล์ 97.65 KB
จำนวนการติดตั้ง 105
เวอร์ชันปัจจุบัน 0.0.7
อัปเดตครั้งล่าสุด 2013-12-15
วันที่เผยแพร่ 2013-12-14
คะแนน 4.67/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Joscha Feth
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/joscha/watchever-imdb-ratings
ภาษาที่รองรับ de
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMDb ratings for watchever",
    "version": "0.0.7",
    "manifest_version": 2,
    "description": "Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "*:\/\/www.watchever.de\/filme\/*",
        "*:\/\/www.watchever.de\/serien\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/www.watchever.de\/filme\/*",
                "*:\/\/www.watchever.de\/serien\/*"
            ],
            "include_globs": [
                "*:\/\/www.watchever.de\/filme\/*-*",
                "*:\/\/www.watchever.de\/serien\/*-*"
            ],
            "css": [
                "data\/inject\/inject.css"
            ],
            "js": [
                "data\/jquery\/jquery-2.0.3.min.js",
                "data\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "data\/jquery\/jquery-2.0.3.min.map"
    ]
}