Mubi Ratings
Shows Rotten Tomato ratings when browsing Mubi
Mubi Ratingsคืออะไร?
Mubi Ratings เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vretallick และคุณลักษณะหลักของมันคือ "Shows Rotten Tomato ratings when browsing Mubi"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mubi Ratings
ดาวน์โหลดไฟล์ส่วนขยาย Mubi Ratings ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Overlays Rotten Tomato ratings when browsing Mubi, so you can make the right film choice. Now works with latest site redesign and using OMDB API as Rotten Tomatoes have discontinued their public API.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | dnpdjibenonbeglpjdklibeiodfjndlh |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/mubi-ratings/dnpdjibenonbeglpjdklibeiodfjndlh |
คำอธิบาย | Shows Rotten Tomato ratings when browsing Mubi |
ขนาดไฟล์ | 257 KB |
จำนวนการติดตั้ง | 53 |
เวอร์ชันปัจจุบัน | 1.5 |
อัปเดตครั้งล่าสุด | 2016-12-14 |
วันที่เผยแพร่ | 2016-12-14 |
คะแนน | 2.25/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | vretallick |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mubi Ratings", "description": "Shows Rotten Tomato ratings when browsing Mubi", "version": "1.5", "permissions": [ "http:\/\/omdbapi.com\/", "http:\/\/*.mubi.com\/", "https:\/\/*.mubi.com\/", "tabs" ], "page_action": { "default_icon": "assets\/icon2.png", "default_title": "Mubi Ratings", "default_popup": "mubiratings.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.mubi.com\/*" ], "js": [ "js\/jquery.js", "js\/mubiratings.js" ], "css": [ "css\/styles.css" ] } ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "web_accessible_resources": [ "js\/jquery-1.10.2.min.map", "css\/styles.css", "assets\/smalltomato.png" ], "icons": { "16": "assets\/16.png", "48": "assets\/48.png", "128": "assets\/128.png" }, "author": "Victoria Retallick" } |