YouTube Rotten Tomatoes

View Rotten Tomatoes scores on YouTube trailers!

YouTube Rotten Tomatoes là gì?

YouTube Rotten Tomatoes là một tiện ích mở rộng Chrome được phát triển bởi Jack Forbes, và tính năng chính của nó là "View Rotten Tomatoes scores on YouTube trailers!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube Rotten Tomatoes

Tải xuống các tệp mở rộng YouTube Rotten Tomatoes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube Rotten Tomatoes YouTube Rotten Tomatoes
ID pnhnpfanenbhdkkmigmcmelkgbjkoaoo
URL Chính Thức https://chromewebstore.google.com/detail/youtube-rotten-tomatoes/pnhnpfanenbhdkkmigmcmelkgbjkoaoo
Mô tả View Rotten Tomatoes scores on YouTube trailers!
Kích Thước Tệp 77.44 KB
Số Lần Cài Đặt 62
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2015-11-27
Ngày Phát Hành 2015-11-26
Đánh Giá 4.15/5 Tổng số 13 Đánh Giá
Nhà Phát Triển Jack Forbes
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}