YouTube Rotten Tomatoes
View Rotten Tomatoes scores on YouTube trailers!
YouTube Rotten Tomatoesคืออะไร?
YouTube Rotten Tomatoes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jack Forbes และคุณลักษณะหลักของมันคือ "View Rotten Tomatoes scores on YouTube trailers!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Rotten Tomatoes
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Rotten Tomatoes ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
View Rotten Tomatoes critic and audience scores next to video titles for YouTube trailers. This extension checks for the keywords 'trailer' and 'teaser', and queries a custom Google search engine for Rotten Tomatoes results. Feel free to check out my Github repo and submit any improvements! https://github.com/JackForbes/ytrt
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Rotten Tomatoes |
ID | pnhnpfanenbhdkkmigmcmelkgbjkoaoo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-rotten-tomatoes/pnhnpfanenbhdkkmigmcmelkgbjkoaoo |
คำอธิบาย | View Rotten Tomatoes scores on YouTube trailers! |
ขนาดไฟล์ | 77.44 KB |
จำนวนการติดตั้ง | 62 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2015-11-27 |
วันที่เผยแพร่ | 2015-11-26 |
คะแนน | 4.15/5 รวมทั้งหมด 13 คะแนน |
ผู้พัฒนา | Jack Forbes |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Rotten Tomatoes", "description": "View Rotten Tomatoes scores on YouTube trailers!", "version": "1.3", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/youtube.com\/*", "https:\/\/youtube.com\/*", "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "css": [ "app.css" ], "js": [ "jquery-2.1.4.min.js", "ytrt.page.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/*.google.com\/*", "https:\/\/www.rottentomatoes.com\/*" ], "content_security_policy": "script-src 'self' https:\/\/www.google.com; object-src 'self'", "web_accessible_resources": [ "img\/tomatoe.png", "img\/popcorn.png", "img\/splat.png", "img\/spill.png" ] } |