YouStopper for YouTube™
Prevents YouTube™ videos autoplay
YouStopper for YouTube™とは何ですか?
YouStopper for YouTube™はUnknownによって開発されたChromeの拡張機能で、その主な機能は「Prevents YouTube™ videos autoplay」です。
拡張機能のスクリーンショット
YouStopper for YouTube™拡張機能のCRXファイルをダウンロード
YouStopper for YouTube™拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Prevents YouTube™ videos from starting to play automatically when you open them.
Doesn't affect ads so it's better to use together with an Ad-Blocking extension like uBlock Origin.
Doesn't stop autoplaying in playlists.
Source available at https://github.com/youstopper-dev/youstopper 拡張機能の基本情報
| 名前 | |
| ID | hmfocflebeolgkehnimcchankdjljepb |
| 公式URL | https://chromewebstore.google.com/detail/youstopper-for-youtube/hmfocflebeolgkehnimcchankdjljepb |
| 説明 | Prevents YouTube™ videos autoplay |
| ファイルサイズ | 51.95 KB |
| インストール数 | 1,482 |
| 現在のバージョン | 0.2 |
| 最終更新日 | 2018-02-18 |
| 公開日 | 2018-02-18 |
| 評価 | 3.56/5 合計 41 レビュー |
| 開発者 | Unknown |
| 支払い方法 | free |
| 対応言語 | en,ru |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_extension_name__",
"short_name": "YouStopper",
"description": "__MSG_extension_description__",
"version": "0.2",
"default_locale": "en",
"icons": {
"32": "icons\/youstop_icon_32.png",
"48": "icons\/youstop_icon_48.png",
"64": "icons\/youstop_icon_64.png",
"128": "icons\/youstop_icon_128.png",
"512": "icons\/youstop_icon_512.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"page.js"
],
"browser_action": {
"default_icon": {
"32": "icons\/youstop_icon_32.png",
"64": "icons\/youstop_icon_64.png"
},
"default_title": "__MSG_ba_click2disable__"
},
"permissions": [
"storage"
],
"minimum_chrome_version": "50"
} | |