YouTube Anywhere Remote

YouTube Anywhere Remote allows you to control videos on YouTube, Udemy, and AmigosCode even while you're using other programs!

Τι είναι το YouTube Anywhere Remote;

Το YouTube Anywhere Remote είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Chris McDonald, και η κύρια λειτουργία του είναι "YouTube Anywhere Remote allows you to control videos on YouTube, Udemy, and AmigosCode even while you're using other programs!".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης YouTube Anywhere Remote

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

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

                        Features controls like: Pause, Rewind, Next/Previous Video, and more.

This allows you to control videos on YouTube, Udemy, and AmigosCode even while using other programs or while your browser is minimized.
The goal was to not have to switch back and forth between your video and your other content while studying, working, or gaming!

The extension also lets you choose all of your own shortcuts for ease-of-use.

-----------------------------
How to Use YouTube Anywhere Remote:

Watch the YouTube video above for a visual guide!

1. After installing, click on the dotted menu icon at the top right of your browser and under "More tools" click on "Extensions" to open the Extensions page.

2. On the extensions page, click on the menu at the top left of the page and click on "Keyboard shortcuts".

Here you can easily choose whatever shortcuts are most comfortable for you for each feature.

YouTube Anywhere Remote will now let you control the YouTube or Udemy video tab furthest to the left in your browser window!

IMPORTANT: Make sure to switch "In Chrome" to "Global" if you want to use features while you're using other programs or have your browser minimized.

-----------------------------
--- Version 1.4.1 Released ---
Udemy Text Lessons Now Supported
- Next and previous buttons will now also work on lessons with text content.
- Includes a fix where script was injected multiple times and caused performance problems in some cases.

--- Version 1.4.0 Released ---
Skip Ad shortcut added!
- The skip ad shortcut will only work once the actual "Skip Ad" button is made visible by YouTube on the screen.
- This works more in accordance with YouTube's terms of service and shouldn't jeopardize your account standing when compared to how YouTube Ad-blocker extensions potentially can.

--- Version 1.3.0 Released ---
AmigosCode.com support has been added!
- Controls for YouTube, Udemy, and AmigosCode are nearly identical
- AmigosCode tabs should be fully compatible with existing features

--- Version 1.2.1 Released ---
Better Udemy Support!
 - Video overlays are no longer clickable and will not get in the way of original player functionality.
 - Playback speed no longer reverts to default speed after pausing and resuming video.

--- Version 1.2.0 Released ---
Video overlays have been added!
 - Video overlays now show current volume of video, playback speed, and loop status when changed

--- Version 1.1.0 Released ---
Udemy.com support has been added!
- Controls for both YouTube and Udemy videos are nearly identical
- Udemy tabs should be fully compatible with existing features

--- Version 1.0.0 Released ---
Features Added:
- Volume Up
- Volume Down
- Next Video (Works even when not in a playlist)
- Previous Video (Works even when not in a playlist)
- Loop Current Video
- User can now easily select which video to control by simply clicking on it (must be the YouTube video furthest to the left)

Functionality Improvements:
- Improved usability when multiple windows are open
- Second opened YouTube video in separate window no longer steals focus from first YouTube video opened if first video is still playing
- Reduced redundant script executions to increase overall speed
- Minimized amount of uncaught errors
- Increased communication between the extension and the loaded YouTube page                    

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

Όνομα YouTube Anywhere Remote YouTube Anywhere Remote
ID hjimacdiplfkaobglkdgkmhlamjjlnik
Επίσημο URL https://chromewebstore.google.com/detail/youtube-anywhere-remote/hjimacdiplfkaobglkdgkmhlamjjlnik
Περιγραφή YouTube Anywhere Remote allows you to control videos on YouTube, Udemy, and AmigosCode even while you're using other programs!
Μέγεθος Αρχείου 46.08 KB
Αριθμός Εγκαταστάσεων 520
Τρέχουσα Έκδοση 1.4.1
Τελευταία Ενημέρωση 2021-01-28
Ημερομηνία Δημοσίευσης 2020-11-08
Αξιολόγηση 4.25/5 Συνολικά 16 Αξιολογήσεις
Προγραμματιστής Chris McDonald
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/crobin93/youtube-anywhere-remote
Διεύθυνση URL της Σελίδας Βοήθειας https://chris-mcdonald.dev
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Anywhere Remote",
    "version": "1.4.1",
    "icons": {
        "16": "assets\/icon-16.png",
        "32": "assets\/icon-32.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "description": "YouTube Anywhere Remote allows you to control videos on YouTube, Udemy, and AmigosCode even while you're using other programs!",
    "background": {
        "scripts": [
            ".\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "https:\/\/*.youtube.com\/*",
        "https:\/\/*.udemy.com\/*",
        "https:\/\/*.amigoscode.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.youtube.com\/*",
                "http:\/\/*.udemy.com\/*",
                "http:\/\/*.amigoscode.com\/*"
            ],
            "js": [
                ".\/youtube-foreground.js",
                ".\/udemy-foreground.js",
                ".\/amigoscode-foreground.js"
            ]
        }
    ],
    "commands": {
        "aPausePlay": {
            "description": "Pause\/Play"
        },
        "bRewind": {
            "description": "Rewind (5 Seconds)"
        },
        "cFastforward": {
            "description": "Fast-forward (5 Seconds)"
        },
        "dVolumeUp": {
            "description": "Volume Up"
        },
        "eVolumeDown": {
            "description": "Volume Down"
        },
        "fNextVideo": {
            "description": "Next Video"
        },
        "gPreviousVideo": {
            "description": "Previous Video"
        },
        "hLoopCurrentVideo": {
            "description": "Loop Current Video (Toggle)"
        },
        "iSpeedUp": {
            "description": "Speed Up Playback"
        },
        "jSlowDown": {
            "description": "Slow Down Playback"
        },
        "kSkipAd": {
            "description": "Skip Current Ad"
        }
    }
}