Tetfu Generator for Youtube

Generate Tetfu from Youtube videos.

Tetfu Generator for Youtube란 무엇입니까?

Tetfu Generator for Youtube은(는) SoRA_X7에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generate Tetfu from Youtube videos."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Tetfu Generator for Youtube 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Simple tool to generate Tetris Fumen from Youtube videos of Tetris games
Currently supports Puyo Puyo Tetris, Puyo Puyo Tetris 2 and Tetris 99.

1. Open a Youtube video of Tetris game and seek to the timing you want to capture.
2. Click the T-mino icon on the left of the caption (or video settings) button.
3. That's all! The Fumen created will be shown above recommended videos.

Special thanks:
knewjade(https://twitter.com/1millim) for his Fumen for Mobile

Developer:
SoRA_X7 (https://twitter.com/X7_SoRA)                    

확장 프로그램 기본 정보

이름 Tetfu Generator for Youtube Tetfu Generator for Youtube
ID kjphnlnbbkgljiaabegchlghlaejpgfb
공식 URL https://chromewebstore.google.com/detail/tetfu-generator-for-youtu/kjphnlnbbkgljiaabegchlghlaejpgfb
설명 Generate Tetfu from Youtube videos.
파일 크기 18.58 KB
설치 횟수 293
현재 버전 1.2.1
최근 업데이트 2021-11-25
출시 날짜 2020-09-29
개발자 SoRA_X7
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://twitter.com/X7_SoRA
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_title__",
    "version": "1.2.1",
    "description": "__MSG_description__",
    "default_locale": "en",
    "permissions": [
        "https:\/\/www.youtube.com\/",
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "utils.js",
                "page.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "64": "images\/icon_64.png",
        "128": "images\/icon_128.png"
    }
}