YouTube Zoomer
Easily zoom on YouTube videos, with a simple scroll
YouTube Zoomerとは何ですか?
YouTube Zoomerはteyzer18によって開発されたChromeの拡張機能で、その主な機能は「Easily zoom on YouTube videos, with a simple scroll」です。
拡張機能のスクリーンショット
YouTube Zoomer拡張機能のCRXファイルをダウンロード
YouTube Zoomer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
With this extension, you can easily zoom on YouTube videos. It can be useful to seek for something particular in a video, something you have some difficulties to see, or to resize the format of the theater mode.
拡張機能の基本情報
名前 | YouTube Zoomer |
ID | bgdkkdnidmmakdgebkgaeijbfkhieejn |
公式URL | https://chromewebstore.google.com/detail/youtube-zoomer/bgdkkdnidmmakdgebkgaeijbfkhieejn |
説明 | Easily zoom on YouTube videos, with a simple scroll |
ファイルサイズ | 13.8 KB |
インストール数 | 1,623 |
現在のバージョン | 1.0 |
最終更新日 | 2020-08-23 |
公開日 | 2020-08-23 |
評価 | 3.05/5 合計 20 レビュー |
開発者 | teyzer18 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.0", "name": "YouTube Zoomer", "description": "Easily zoom on YouTube videos, with a simple scroll", "background": { "persistent": false, "scripts": [ "background\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content\/injection.js" ] } ], "browser_action": { "default_popup": "popup\/popup.html", "default_icon": "icons\/icon.png" }, "permissions": [ "storage", "activeTab", "*:\/\/*.youtube.com\/*", "background" ] } |