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.」です。
拡張機能のスクリーンショット
Tetfu Generator for Youtube拡張機能のCRXファイルをダウンロード
Tetfu Generator for Youtube拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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) 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |