YouTube Uninterrupted

Ensures that YouTube runs without any interruptions

YouTube Uninterrupted क्या है?

YouTube Uninterrupted Tobias Günther द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Ensures that YouTube runs without any interruptions"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Experience uninterrupted enjoyment on YouTube with this extension, now featuring - Easier Volume Control! With the latest update, adjusting video volume is simpler than ever – just scroll the mouse wheel up or down while hovering the cursor over the video. Here's what the extension else offers:

Replay Button: Enjoy seamless video replay with just a single click or keyboard shortcut (r). Relive your favorite moments effortlessly.

Ad Skip/Closure: Our extension automatically skips or closes ads, reducing interruptions to your content consumption. Note that ads may briefly appear to support content creators with ad revenue. Ad-banners and promotional videos are also being removed from the homepage.

Quicker Autoplay: No more waiting! Experience faster autoplay with an elimination of the short delay between videos.

Autostop Disabler: Say goodbye to the annoying YouTube Autostop function that usually kicks in after a period of idle video playback.

Cleanup Layout: Dynamically hides unnecessary buttons, such as miniplayer and cinema mode, when not in use. The subtitles button is concealed when no subtitles are available. Additionally, action buttons like download and clip are removed, while the save button is always prominently displayed.

Easier Volume Control (New Feature): Scroll the mouse wheel up and down to adjust video volume. Simply hold the cursor over the video and scroll for a more convenient volume control experience.

All these features are customizable through the extension's own menu, allowing you to tailor your YouTube experience according to your preferences.

Report Issues: Encountered any issues, problems, or bugs? Your feedback is valued! Please report them to [email protected].                    

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

नाम YouTube Uninterrupted YouTube Uninterrupted
ID enmeegingoekbnecjoaogdebdpcmfnff
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-uninterrupted/enmeegingoekbnecjoaogdebdpcmfnff
विवरण Ensures that YouTube runs without any interruptions
फ़ाइल का आकार 24.42 KB
स्थापना संख्या 1,144
वर्तमान संस्करण 2.2.0
अंतिम अपडेट 2024-02-24
प्रकाशन तिथि 2020-12-31
रेटिंग 4.14/5 कुल 7 रेटिंग्स
डेवलपर Tobias Günther
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Uninterrupted",
    "description": "Ensures that YouTube runs without any interruptions",
    "version": "2.2.0",
    "action": {
        "default_icon": {
            "32": "assets\/icon.png"
        },
        "default_title": "YouTube uninterrupted",
        "default_popup": "html\/main.html"
    },
    "icons": {
        "128": "assets\/icon.png"
    },
    "background": {
        "service_worker": "js\/serviceWorker.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "css\/replayButton.css"
            ],
            "js": [
                "js\/dbManagement.js",
                "js\/utensils.js",
                "js\/errorManagement.js",
                "js\/skipAds.js",
                "js\/speedupAutoplay.js",
                "js\/replayButton.js",
                "js\/preventAutostop.js",
                "js\/cleanupLayout.js",
                "js\/mainCS.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*.png",
                "js\/*.js",
                "css\/*.css"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}