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 |
公式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" ] } |