Netflix Rottenizer
Overlays Rotten Tomato reviews when browsing Netflix.
Netflix Rottenizerคืออะไร?
Netflix Rottenizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย orrybaram และคุณลักษณะหลักของมันคือ "Overlays Rotten Tomato reviews when browsing Netflix."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Rottenizer
ดาวน์โหลดไฟล์ส่วนขยาย Netflix Rottenizer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Takes critic and audience ratings from Rotten Tomatoes and overlays them over Netflix movies. The extension also adds a button that lets you hide rotten movies. Based on Nicolae Rusan's Rotten Netflix.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ncoenoilpelnnkgbpcgcdkmibhhkljjc |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/netflix-rottenizer/ncoenoilpelnnkgbpcgcdkmibhhkljjc |
คำอธิบาย | Overlays Rotten Tomato reviews when browsing Netflix. |
ขนาดไฟล์ | 1.02 MB |
จำนวนการติดตั้ง | 1,000 |
เวอร์ชันปัจจุบัน | 0.7.6 |
อัปเดตครั้งล่าสุด | 2015-07-07 |
วันที่เผยแพร่ | 2015-07-07 |
คะแนน | 2.96/5 รวมทั้งหมด 24 คะแนน |
ผู้พัฒนา | orrybaram |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/orrybaram/RottenNetflix/ |
URL หน้าช่วยเหลือ | https://github.com/orrybaram/RottenNetflix/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix Rottenizer", "version": "0.7.6", "manifest_version": 2, "description": "Overlays Rotten Tomato reviews when browsing Netflix.", "permissions": [ "http:\/\/api.rottentomatoes.com\/", "http:\/\/www.rottentomatoes.com\/", "http:\/\/netflixrottenizer.appspot.com\/", "storage", "tabs" ], "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": { "19": "icon16.png", "38": "icon48.png" }, "default_title": "Netflix Rottenizer", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*.netflix.com\/*" ], "js": [ "jquery-1.7.1.min.js", "hoverIntent-1.8.js", "lodash.js", "netflix_rottenizer.js" ], "css": [ "netflix_rottenizer.css" ] } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |