wipeyy - Controllable "picture in picture".

A Floating Mini Player for Youtube that can be Operated From Anywhere.

Τι είναι το wipeyy - Controllable "picture in picture".;

Το wipeyy - Controllable "picture in picture". είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Okitama. Inc., και η κύρια λειτουργία του είναι "A Floating Mini Player for Youtube that can be Operated From Anywhere.".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης wipeyy - Controllable "picture in picture".

Λήψη αρχείων επέκτασης wipeyy - Controllable "picture in picture". σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Watch video using Picture-in-Picture(Always on top Floating Mini Player).

Picture-in-Picture (PiP) allows you to watch videos in a floating window (always on top of other windows) so you can keep an eye on what you’re watching while interacting with other sites, or applications.
It also, some shortcuts suitable for playback are provided, allowing operation even when the browser is not displayed!!

Keyboard shortcut: 
Picture in picture            : Ctrl + Shift + 9 (⌘ + shift + 9 on macOS)
Pause / Start                   : Ctrl + Shift + 8 (⌘ + shift + 8 on macOS)
Skip video 10 sec           : Ctrl + Shift + 7 (⌘ + shift + 7 on macOS)
Video back 10 seconds  : Ctrl + Shift + 6 (⌘ + shift + 6 on macOS)

Tested in following websites

- https://youtube.com/
- https://www.netflix.com/
- https://www.primevideo.com/
- https://www.twitch.tv/
- https://www.bilibili.com/

The extension should works on other websites as well.                    

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

Όνομα wipeyy - Controllable wipeyy - Controllable "picture in picture".
ID mgbnhohohiggdomiccdpkhaponabbfbc
Επίσημο URL https://chromewebstore.google.com/detail/wipeyy-controllable-pictu/mgbnhohohiggdomiccdpkhaponabbfbc
Περιγραφή A Floating Mini Player for Youtube that can be Operated From Anywhere.
Μέγεθος Αρχείου 155 KB
Αριθμός Εγκαταστάσεων 2,000
Τρέχουσα Έκδοση 0.3.2
Τελευταία Ενημέρωση 2020-05-01
Ημερομηνία Δημοσίευσης 2020-04-30
Αξιολόγηση 4.59/5 Συνολικά 17 Αξιολογήσεις
Προγραμματιστής Okitama. Inc.
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "short_name": "wipeyy",
    "version": "0.3.2",
    "author": "Abe Keishi",
    "default_locale": "en",
    "browser_action": {
        "default_icon": ".\/icon\/icon_eye.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": ".\/icon\/icon16.png",
        "48": ".\/icon\/icon48.png",
        "128": ".\/icon\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contents.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "commands": {
        "skip-10sec": {
            "description": "skip the video to 10sec",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+Shift+7",
                "mac": "Ctrl+Shift+7"
            }
        },
        "previous-10sec": {
            "description": "skip the video to -10sec",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+Shift+6",
                "mac": "Ctrl+Shift+6"
            }
        },
        "play-pause": {
            "description": "play\/pause",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+Shift+8",
                "mac": "Ctrl+Shift+8"
            }
        },
        "pip-switch": {
            "description": "pip\/unpip",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+Shift+9",
                "mac": "Ctrl+Shift+9"
            }
        }
    }
}