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