Netfix
Netfix removes the auto playing previews on Netflix.
Netfixとは何ですか?
NetfixはSamuel Kadolphによって開発されたChromeの拡張機能で、その主な機能は「Netfix removes the auto playing previews on Netflix.」です。
拡張機能のスクリーンショット
Netfix拡張機能のCRXファイルをダウンロード
Netfix拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Tired of Netflix's auto playing preview ads? Install this extension and those will be disabled!
Code available at https://github.com/samuelkadolph/netfix.
Report issues at https://github.com/samuelkadolph/netfix/issues.
Changelog:
v0.3.0
- Switched to block network requests for the preview videos
- Added option to turn preview blocking on and off
v0.2.0
- Added options page
- Added option to hide the whole billboard instead of just the preview video
v0.1.7
- Replaced placeholder 16x16 icon
v0.1.6
- Now removes the preview video when returning to the browse page 拡張機能の基本情報
| 名前 | |
| ID | dlceeplebocldajolniciioiliocihco |
| 公式URL | https://chromewebstore.google.com/detail/netfix/dlceeplebocldajolniciioiliocihco |
| 説明 | Netfix removes the auto playing previews on Netflix. |
| ファイルサイズ | 14.26 KB |
| インストール数 | 216 |
| 現在のバージョン | 0.3.0 |
| 最終更新日 | 2017-12-10 |
| 公開日 | 2017-12-09 |
| 評価 | 3.33/5 合計 12 レビュー |
| 開発者 | Samuel Kadolph |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/samuelkadolph/netfix |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"scripts": [
"javascripts\/background.js"
]
},
"content_scripts": [
{
"js": [
"javascripts\/netfix.js"
],
"matches": [
"https:\/\/www.netflix.com\/*"
]
}
],
"description": "Netfix removes the auto playing previews on Netflix.",
"icons": {
"16": "images\/icon16.png",
"38": "images\/icon38.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"manifest_version": 2,
"name": "Netfix",
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"permissions": [
"https:\/\/*.nflxvideo.net\/*",
"https:\/\/www.netflix.com\/*",
"storage",
"webRequest",
"webRequestBlocking"
],
"short_name": "Netfix",
"version": "0.3.0"
} | |