YouTube Rotten Tomatoes

View Rotten Tomatoes scores on YouTube trailers!

YouTube Rotten Tomatoes क्या है?

YouTube Rotten Tomatoes Jack Forbes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View Rotten Tomatoes scores on YouTube trailers!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Rotten Tomatoes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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