QuickYou
Speed up, slow down, advance, rewind, picture in picture any HTML5 video with quick shortcuts. And show statistic.
Was ist QuickYou?
QuickYou ist eine Chrome-Erweiterung, die von djamah entwickelt wurde, und ihr Hauptmerkmal ist "Speed up, slow down, advance, rewind, picture in picture any HTML5 video with quick shortcuts. And show statistic.".
Erweiterungsscreenshots
QuickYou-Erweiterungs-CRX-Datei herunterladen
Laden Sie QuickYou-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Когда нибудь, это приложение перевернет весь мыслимый и немыслимый экспириенс просмотра видео, а пока оно позволяет удобно его ускорять и смотреть поверх остальных окон. Построено на базе – https://github.com/igrigorik/videospeed
Grundlegende Informationen zur Erweiterung
Name | QuickYou |
ID | gbjoekpocednjbkbgbmdffegjgnompli |
Offizielle URL | https://chromewebstore.google.com/detail/quickyou/gbjoekpocednjbkbgbmdffegjgnompli |
Beschreibung | Speed up, slow down, advance, rewind, picture in picture any HTML5 video with quick shortcuts. And show statistic. |
Dateigröße | 371 KB |
Installationsanzahl | 514 |
Aktuelle Version | 0.3.0.0 |
Letztes Update | 2021-07-12 |
Veröffentlichungsdatum | 2019-12-23 |
Bewertung | 5.00/5 Insgesamt 20 Bewertungen |
Entwickler | djamah |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://quick-you.com/ |
Hilfeseite URL | http://quick-you.com/ |
URL der Datenschutzrichtlinien-Seite | http://quick-you.com/privacy-policy.html |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "QuickYou", "short_name": "quick-you", "version": "0.3.0.0", "manifest_version": 2, "description": "Speed up, slow down, advance, rewind, picture in picture any HTML5 video with quick shortcuts. And show statistic.", "homepage_url": "http:\/\/quick-you.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "options_ui": { "page": "options.html", "open_in_tab": true }, "browser_action": { "default_icon": { "19": "icons\/icon19.png", "38": "icons\/icon38.png", "48": "icons\/icon48.png" }, "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "match_about_blank": true, "exclude_matches": [ "https:\/\/plus.google.com\/hangouts\/*", "https:\/\/hangouts.google.com\/*", "https:\/\/meet.google.com\/*", "https:\/\/teamtreehouse.com\/*", "http:\/\/www.hitbox.tv\/*" ], "css": [ "inject.css" ], "js": [ "inject.js" ] } ], "web_accessible_resources": [ "inject.css", "shadow.css", "animate.css", "img\/*.svg" ], "content_security_policy": "script-src 'self' https:\/\/cdn.amplitude.com; object-src 'self'" } |