YouTube™ motion tracking
AI extension for motion animation in YouTube™ videos
YouTube™ motion tracking क्या है?
YouTube™ motion tracking deep2universe द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "AI extension for motion animation in YouTube™ videos"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube™ motion tracking एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/*" ] } ] } |