Simple Video Skipper

This is an extension to skip the opening and ending of videos. sites: Netflix / Amazon Prime / Abema / DMM TV

Τι είναι το Simple Video Skipper;

Το Simple Video Skipper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ogeeeeen, και η κύρια λειτουργία του είναι "This is an extension to skip the opening and ending of videos. sites: Netflix / Amazon Prime / Abema / DMM TV".

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

screenshot
screenshot

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

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

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

                        ------------------------------------------------------------------------
■ Upcoming Updates
・Expanding supported services
・On/Off skip feature for each individual service
------------------------------------------------------------------------

■ Description

This extension offers a convenient feature that allows users to easily skip the opening and ending portions of videos. As a result, users can quickly access the main content of the video, enabling them to enjoy it more efficiently.

Currently, this extension is compatible with popular video streaming sites, allowing users to enjoy a wide range of content. You can use the skip function for openings and endings on various videos provided on supported sites.

Furthermore, the extension aims to support additional sites in the future and is open to handling additional compatibility requests from users. If there is a site you would like the extension to support, please do not hesitate to contact the developer. The developer listens to users' feedback and continues to work towards making this useful feature available on as many video streaming sites as possible.

By using this extension, your video viewing experience will become even more enjoyable, allowing you to efficiently enjoy a multitude of content without spending time repeatedly watching opening and ending segments. Be sure to incorporate this extension and indulge in a fulfilling video viewing life.                    

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

Όνομα Simple Video Skipper Simple Video Skipper
ID ngednmbiiiijkhehogjpjajejchklbjo
Επίσημο URL https://chromewebstore.google.com/detail/simple-video-skipper/ngednmbiiiijkhehogjpjajejchklbjo
Περιγραφή This is an extension to skip the opening and ending of videos. sites: Netflix / Amazon Prime / Abema / DMM TV
Μέγεθος Αρχείου 70.46 KB
Αριθμός Εγκαταστάσεων 76
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2023-04-23
Ημερομηνία Δημοσίευσης 2023-04-19
Προγραμματιστής Ogeeeeen
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες id,de,en,fr,vi,tr,ca,da,et,es,it,cs,el,bg,bn,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Simple Video Skipper",
    "version": "1.2",
    "description": "__MSG_app_desc__",
    "default_locale": "en",
    "action": {
        "default_icon": "icon.png",
        "default_title": "Simple Video Skipper",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/tv.dmm.com\/*"
            ],
            "js": [
                "js\/dmmtv.js"
            ],
            "all_frames": true
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.netflix.com\/*",
                "https:\/\/www.netflix.ca\/*",
                "https:\/\/www.netflix.com\/*",
                "https:\/\/www.netflix.com.au\/*",
                "https:\/\/www.netflix.net\/*"
            ],
            "js": [
                "js\/netflix.js"
            ],
            "all_frames": true
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.amazon.com\/*",
                "https:\/\/www.amazon.co.jp\/*",
                "https:\/\/www.amazon.com.au\/*",
                "https:\/\/www.amazon.com.br\/*",
                "https:\/\/www.amazon.ca\/*",
                "https:\/\/www.amazon.fr\/*",
                "https:\/\/www.amazon.de\/*",
                "https:\/\/www.amazon.in\/*",
                "https:\/\/www.amazon.it\/*",
                "https:\/\/www.amazon.com.mx\/*",
                "https:\/\/www.amazon.nl\/*",
                "https:\/\/www.amazon.sg\/*",
                "https:\/\/www.amazon.es\/*",
                "https:\/\/www.amazon.com.tr\/*",
                "https:\/\/www.amazon.ae\/*",
                "https:\/\/www.amazon.co.uk\/*",
                "https:\/\/www.amazon.cn\/*"
            ],
            "js": [
                "js\/amazon.js"
            ],
            "all_frames": true
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/abema.tv\/*"
            ],
            "js": [
                "js\/abema.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "128": "icon.png"
    }
}