YouTube™ motion tracking

AI extension for motion animation in YouTube™ videos

YouTube™ motion tracking란 무엇입니까?

YouTube™ motion tracking은(는) deep2universe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "AI extension for motion animation in YouTube™ videos"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

YouTube™ motion tracking 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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\/*"
            ]
        }
    ]
}