YouTube Rotten Tomatoes
View Rotten Tomatoes scores on YouTube trailers!
什麼是YouTube Rotten Tomatoes?
YouTube Rotten Tomatoes是由Jack Forbes開發的Chrome擴展程式,該擴展的主要功能是“View Rotten Tomatoes scores on YouTube trailers!”。
擴展截圖
下載YouTube Rotten Tomatoes擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | pnhnpfanenbhdkkmigmcmelkgbjkoaoo |
| 官方網址 | 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"
]
} | |