YouTube Rotten Tomatoes

View Rotten Tomatoes scores on YouTube trailers!

Wat is YouTube Rotten Tomatoes?

YouTube Rotten Tomatoes is een Chrome-extensie ontwikkeld door Jack Forbes, en de belangrijkste functie is "View Rotten Tomatoes scores on YouTube trailers!".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie YouTube Rotten Tomatoes

Download YouTube Rotten Tomatoes-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam YouTube Rotten Tomatoes YouTube Rotten Tomatoes
ID pnhnpfanenbhdkkmigmcmelkgbjkoaoo
Officiële URL https://chromewebstore.google.com/detail/youtube-rotten-tomatoes/pnhnpfanenbhdkkmigmcmelkgbjkoaoo
Beschrijving View Rotten Tomatoes scores on YouTube trailers!
Bestandsgrootte 77.44 KB
Aantal Installaties 62
Huidige Versie 1.3
Laatst Bijgewerkt 2015-11-27
Publicatiedatum 2015-11-26
Beoordeling 4.15/5 Totaal 13 Beoordelingen
Ontwikkelaar Jack Forbes
Betalingswijze free
Ondersteunde Talen 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"
    ]
}