Youtube Video Controller

Disable automatic pausing, set an end time for videos, interact with videos from any tab with chrome extension GUI

Youtube Video Controller क्या है?

Youtube Video Controller Austin Wyatt द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Disable automatic pausing, set an end time for videos, interact with videos from any tab with chrome extension GUI"।

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

screenshot
screenshot

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

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

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

                        Features:
Ability to specify an end time for any number of youtube videos. This allows you to remove long outros from music in a playlist

Removes the youtube idle popup that plays when you haven't interacted with the page in an hour

UI that allows you to interact with any open youtube tab from the chrome extension menu. The UI allows you to play/pause, go to next/previous, and alter the volume of videos on a tab. Set volumes are unique to each tab and persist for as long as you keep the tab open.

Right click context menu option to create a detached, movable, and resizeable version of the chrome extension popup menu

Secondary options menu with tab specific loop toggle, playback speed slider, and video progress bar that lets you move to any point in a video (similar to the normal youtube progress bar)

Hotkeys:
From inside the popup (either chrome extension menu or detachable popup):
Space = Pause currently selected video
Q = Decrease volume
E = Increase volume
1 = Previous video
2 = Next video
Shift = Mute video

On an item in the Tabs menu:
Ctrl + click = Move to selected tab
Alt + click = Close selected tab                    

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

नाम Youtube Video Controller Youtube Video Controller
ID ffbpnhedklbikebhoipcgeompghpgljj
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-video-controller/ffbpnhedklbikebhoipcgeompghpgljj
विवरण Disable automatic pausing, set an end time for videos, interact with videos from any tab with chrome extension GUI
फ़ाइल का आकार 118 KB
स्थापना संख्या 89
वर्तमान संस्करण 1.18.3
अंतिम अपडेट 2023-06-10
प्रकाशन तिथि 2020-02-23
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Austin Wyatt
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Video Controller",
    "version": "1.18.3",
    "description": "Disable automatic pausing, set an end time for videos, interact with videos from any tab with chrome extension GUI",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus",
        "tabs"
    ],
    "web_accessible_resources": [
        "script.js",
        "jquery-3.4.1.min.js"
    ],
    "manifest_version": 2,
    "commands": {
        "pause-video": {
            "suggested_key": {
                "default": "Alt+Q",
                "windows": "Alt+Q",
                "mac": "Alt+Q"
            },
            "description": "Pause video"
        },
        "next-video": {
            "suggested_key": {
                "default": "Alt+2",
                "windows": "Alt+2",
                "mac": "Alt+2",
                "chromeos": "Ctrl+Shift+X"
            },
            "description": "Next video"
        },
        "previous-video": {
            "suggested_key": {
                "default": "Alt+1",
                "windows": "Alt+1",
                "mac": "Alt+1",
                "chromeos": "Ctrl+Shift+Z"
            },
            "description": "Previous video"
        },
        "restart-video": {
            "suggested_key": {
                "default": "Alt+3",
                "windows": "Alt+3",
                "mac": "Alt+3",
                "chromeos": "Ctrl+Shift+V"
            },
            "description": "Restart video"
        }
    }
}