YouTube™ motion tracking
AI extension for motion animation in YouTube™ videos
Τι είναι το YouTube™ motion tracking;
Το YouTube™ motion tracking είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον deep2universe, και η κύρια λειτουργία του είναι "AI extension for motion animation in YouTube™ videos".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης YouTube™ motion tracking
Λήψη αρχείων επέκτασης YouTube™ motion tracking σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Use this YouTube™ AI extension for video motion tracking and animation. No data is sent anywhere. Everything happens in your browser. YouTube™ player has a new button with the logo of this extension. (The logo was designed by a 3 year old girl) You can choose between 28 animations. Or you can change the animations randomly. The random interval can be adjusted. The whole thing also works in full screen mode. For everything to run smoothly, you need a computer with a reasonably good graphics card. After installation, please open a new YouTube tab to see the extension. If you don't see any animations, reload the website once. You can see demo videos and how the extension has evolved over time here: https://youtube.com/playlist?list=PLl4gbkccaJWkY4CXwfhImgY-AmR9UvWH0 Have fun! Updates: v.1.2 - Add 4 new animations - You can pause the extension in the YouTube™ player - The last animation and whether the extension is paused is saved locally v.1.1 - Add 4 new animations
Βασικές Πληροφορίες Επέκτασης
Όνομα | YouTube™ motion tracking |
ID | cpjloofnnmchhbdbdchjnhfoclnjliga |
Επίσημο URL | https://chromewebstore.google.com/detail/youtube-motion-tracking/cpjloofnnmchhbdbdchjnhfoclnjliga |
Περιγραφή | AI extension for motion animation in YouTube™ videos |
Μέγεθος Αρχείου | 1.65 MB |
Αριθμός Εγκαταστάσεων | 22 |
Τρέχουσα Έκδοση | 1.2 |
Τελευταία Ενημέρωση | 2022-07-21 |
Ημερομηνία Δημοσίευσης | 2022-05-24 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | deep2universe |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/deep2universe/YouTube-Motion-Tracking |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/deep2universe/YouTube-Motion-Tracking |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube\u2122 motion tracking", "description": "AI extension for motion animation in YouTube\u2122 videos", "version": "1.2", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "run_at": "document_end", "js": [ "content.js" ], "css": [ "content.css" ] } ], "permissions": [ "activeTab", "tabs", "webNavigation", "storage" ], "action": { "default_icon": { "16": "\/images\/logo16.png", "32": "\/images\/logo32.png", "48": "\/images\/logo48.png", "128": "\/images\/logo128.png" } }, "icons": { "16": "\/images\/logo16.png", "32": "\/images\/logo32.png", "48": "\/images\/logo48.png", "128": "\/images\/logo128.png" }, "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "web_accessible_resources": [ { "resources": [ "\/images\/*" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ] } |