Stop NetFlix Previews
A Chrome extension that prevents NetFlix previews from playing.
什麼是Stop NetFlix Previews?
Stop NetFlix Previews是由TJ Downes開發的Chrome擴展程式,該擴展的主要功能是“A Chrome extension that prevents NetFlix previews from playing.”。
擴展截圖
下載Stop NetFlix Previews擴展crx文件
下載Stop NetFlix Previews擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension simply pauses NetFlix previews on the NetFlix website.
擴展基本資訊
名稱 | Stop NetFlix Previews |
ID | gmdijfdhcomiabonldahmphoengpeadi |
官方網址 | https://chromewebstore.google.com/detail/stop-netflix-previews/gmdijfdhcomiabonldahmphoengpeadi |
簡介 | A Chrome extension that prevents NetFlix previews from playing. |
檔案大小 | 14.98 KB |
安裝次數 | 21 |
目前版本 | 1.6.5 |
更新時間 | 2018-07-22 |
上架時間 | 2018-07-22 |
評分 | 5.00/5 共 1 次評分 |
開發者 | TJ Downes |
付費類型 | free |
擴展官網 | https://github.com/tjdownes/stop-netflix-previews-chrome |
說明頁面URL | https://github.com/tjdownes/stop-netflix-previews-chrome |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stop NetFlix Previews", "description": "A Chrome extension that prevents NetFlix previews from playing.", "version": "1.6.5", "author": "TJ Downes", "icons": { "16": "images\/icon_16x16.png", "48": "images\/icon_48x48.png", "96": "images\/icon_96x96.png", "128": "images\/icon_128x128.png" }, "browser_action": { "default_icon": "images\/stop-button.png", "default_title": "Stop Netflix Previews" }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/browse" ], "js": [ "dom-ready.js", "stop-netflix-previews.js" ] } ], "background": { "scripts": [ "background-navigation-handler.js" ], "persistent": false }, "permissions": [ "tabs", "webNavigation", "https:\/\/www.netflix.com\/browse" ] } |