Movie Ratings
Retrieve movie ratings from Rotten Tomatoes.
Movie Ratingsคืออะไร?
Movie Ratings เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ronak Patel และคุณลักษณะหลักของมันคือ "Retrieve movie ratings from Rotten Tomatoes."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Movie Ratings
ดาวน์โหลดไฟล์ส่วนขยาย Movie Ratings ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Movie Ratings lets you view the Rotten Tomatoes and IMDb ratings for a movie. All you have to do is highlight the name of a movie, right click, and select "Get Movie Rating" (you can also right click on a link). After installing the extension the tabs currently opened will need to be reloaded.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | pfmcppclannbbilgigjlodcjkkohjiom |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/movie-ratings/pfmcppclannbbilgigjlodcjkkohjiom |
คำอธิบาย | Retrieve movie ratings from Rotten Tomatoes. |
ขนาดไฟล์ | 80.87 KB |
จำนวนการติดตั้ง | 194 |
เวอร์ชันปัจจุบัน | 1.6.2 |
อัปเดตครั้งล่าสุด | 2015-01-18 |
วันที่เผยแพร่ | 2015-01-18 |
คะแนน | 3.00/5 รวมทั้งหมด 13 คะแนน |
ผู้พัฒนา | Ronak Patel |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Movie Ratings", "version": "1.6.2", "description": "Retrieve movie ratings from Rotten Tomatoes.", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "page": "background.html" }, "permissions": [ "contextMenus", "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "listeners.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "display.html", "display.js", "config.js", "listeners.js", "lib\/*.js" ], "content_security_policy": "script-src 'self' https:\/\/rt-fetcher.herokuapp.com; object-src 'self'" } |