Prime Video Speed and Ratings

Playback speed control, movie filters, and 3rd party ratings for Amazon's streaming service

Prime Video Speed and Ratings क्या है?

Prime Video Speed and Ratings Thomas Reese द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Playback speed control, movie filters, and 3rd party ratings for Amazon's streaming service"।

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

screenshot
screenshot
screenshot

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

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

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

                        Quickly change playback speed while watching videos on Amazon Prime Video. Click the '+' or '-' (plus/minus) key to increase or decrease speed to watch at your preferred rate. Videos with ads also become more watchable :D

Automatically overlay ratings from IMDb, Metacritic, and Rotten Tomatoes on movie selection screens. Make selecting your next video easier by showing consensus from the crowd while comparing choices. (Requires getting an OMDB Api key, link in popup)

Use filters to quickly select a movie to watch. Hide options based on price or ratings. They currently need to be adjusted each time new videos are loaded on page to be applied again.

NOTE: Make sure to register for an Api key from the popup (3rd party service)                    

एक्सटेंशन की मूल जानकारी

नाम Prime Video Speed and Ratings Prime Video Speed and Ratings
ID kjfaggbhlmlbnabhopmkhjgehoplfnkm
आधिकारिक URL https://chromewebstore.google.com/detail/prime-video-speed-and-rat/kjfaggbhlmlbnabhopmkhjgehoplfnkm
विवरण Playback speed control, movie filters, and 3rd party ratings for Amazon's streaming service
फ़ाइल का आकार 152 KB
स्थापना संख्या 468
वर्तमान संस्करण 1.3.0
अंतिम अपडेट 2022-08-09
प्रकाशन तिथि 2020-07-14
रेटिंग 2.67/5 कुल 3 रेटिंग्स
डेवलपर Thomas Reese
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Gibolt/PrimeVideoFast
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "1.3.0",
    "default_locale": "en",
    "icons": {
        "16": "img\/logo_v1.png",
        "128": "img\/logo_v1.png"
    },
    "action": {
        "default_title": "__MSG_extension_name__",
        "default_icon": "img\/logo_v1.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.amazon.at\/*",
                "https:\/\/*.amazon.ca\/*",
                "https:\/\/*.amazon.cn\/*",
                "https:\/\/*.amazon.co.jp\/*",
                "https:\/\/*.amazon.co.uk\/*",
                "https:\/\/*.amazon.com.au\/*",
                "https:\/\/*.amazon.com.br\/*",
                "https:\/\/*.amazon.com.mx\/*",
                "https:\/\/*.amazon.com.nl\/*",
                "https:\/\/*.amazon.de\/*",
                "https:\/\/*.amazon.es\/*",
                "https:\/\/*.amazon.fr\/*",
                "https:\/\/*.amazon.in\/*",
                "https:\/\/*.amazon.it\/*",
                "https:\/\/*.primevideo.com\/*"
            ],
            "all_frames": false,
            "css": [
                "css\/base.css"
            ],
            "js": [
                "constants.js",
                "chromeMessages.js",
                "htmlElements.js",
                "domUtils.js",
                "settings.js",
                "globalValues.js",
                "playbackSpeed.js",
                "filter.js",
                "ratings.js",
                "testCases.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.omdbapi.com\/apikey.aspx*"
            ],
            "all_frames": false,
            "js": [
                "constants.js",
                "chromeMessages.js",
                "htmlElements.js",
                "domUtils.js",
                "settings.js",
                "omdbApiKeyPage.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}