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
扩展基本信息
名称 | 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" ] } |