No AutoPlay
Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.
No AutoPlayとは何ですか?
No AutoPlayはjccoveyによって開発されたChromeの拡張機能で、その主な機能は「Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.」です。
No AutoPlay拡張機能のCRXファイルをダウンロード
No AutoPlay拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Limited to YouTube videos.
The extension will not prevent HTML5 videos hosted on other websites auto-playing, but for YouTube videos, the extension will pause the video when the page loads. 拡張機能の基本情報
| 名前 | |
| ID | kpcjcnadodbmcfhkknekeofhidnkjeii |
| 公式URL | https://chromewebstore.google.com/detail/no-autoplay/kpcjcnadodbmcfhkknekeofhidnkjeii |
| 説明 | Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab. |
| ファイルサイズ | 4.07 KB |
| インストール数 | 116 |
| 現在のバージョン | 1.0.0 |
| 最終更新日 | 2017-12-06 |
| 公開日 | 2017-12-06 |
| 評価 | 3.00/5 合計 7 レビュー |
| 開発者 | jccovey |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "No AutoPlay",
"version": "1.0.0",
"description": "Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.",
"permissions": [],
"content_scripts": [
{
"matches": [
"http:\/\/*.youtube.com\/*",
"https:\/\/*.youtube.com\/*",
"http:\/\/*.youtu.be\/*",
"https:\/\/*.youtu.be\/*"
],
"js": [
"contentscript.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"manifest_version": 2
} | |