Refined Prime Video

Adds small tweaks and useful new features to Amazon Prime Video.

Τι είναι το Refined Prime Video;

Το Refined Prime Video είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Niklas Higi, και η κύρια λειτουργία του είναι "Adds small tweaks and useful new features to Amazon Prime Video.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Refined Prime Video

Λήψη αρχείων επέκτασης Refined Prime Video σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        ★ Hide spoilers
Accidentally scrolling too far down and catching a glimpse of a spoiler sucks. Refined Prime Video allows you to hide them by blurring the thumbnails and hiding the descriptions of episodes you haven’t watched yet. You can control when that happens in the extension settings.

★ Continue watching
Wanna quickly continue watching your favorite series without drowning in the sea of thumbnails of Prime Video’s home page or managing bookmarks? Just click on the Refined Prime Video icon, select the series from a list of things you’ve recently watched, and that’s it! The episode you left off at will start playing instantly.

★ Skip shortcut
Seeing a trailer for a new series while watching something else is super annoying and in the time that it takes for you to move your mouse to the “Skip” button and click, the trailer has already finished playing. With Refined Prime Video all you have to do is press the “S” key on your keyboard. This works with trailers, intros, recaps, and the “Next up” countdown.


Prime Video is a trademark of Amazon Technologies, Inc., a subsidiary of Amazon.com, Inc. The author of Refined Prime Video is not affiliated with these companies.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Refined Prime Video Refined Prime Video
ID pieemlagbhnombolehnjdoaoojpphedd
Επίσημο URL https://chromewebstore.google.com/detail/refined-prime-video/pieemlagbhnombolehnjdoaoojpphedd
Περιγραφή Adds small tweaks and useful new features to Amazon Prime Video.
Μέγεθος Αρχείου 40.62 KB
Αριθμός Εγκαταστάσεων 24,727
Τρέχουσα Έκδοση 22.5.21.1823
Τελευταία Ενημέρωση 2022-05-24
Ημερομηνία Δημοσίευσης 2020-06-16
Αξιολόγηση 4.17/5 Συνολικά 70 Αξιολογήσεις
Προγραμματιστής Niklas Higi
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/shroudedcode/refined-prime-video#readme
Διεύθυνση URL της Σελίδας Βοήθειας https://forms.gle/teFnHm4UbTPhzKn18
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Refined Prime Video",
    "description": "Adds small tweaks and useful new features to Amazon Prime Video.",
    "homepage_url": "https:\/\/github.com\/shroudedcode\/refined-prime-video#readme",
    "icons": {
        "128": "icon.png"
    },
    "action": {
        "default_icon": "icon.png",
        "default_title": "Refined Prime Video",
        "default_popup": "popup.html",
        "browser_style": true
    },
    "version": "22.5.21.1823",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/*.primevideo.com\/*",
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.amazon.co.uk\/*",
                "https:\/\/*.amazon.de\/*",
                "https:\/\/*.amazon.co.jp\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "manifest_version": 3,
    "minimum_chrome_version": "88"
}