Netflix Continue Playing Clicker
This extension clicks the Netflix "continue playing" Button automatically
什么是Netflix Continue Playing Clicker?
Netflix Continue Playing Clicker是由limered开发的Chrome扩展程序,该扩展的主要功能是“This extension clicks the Netflix "continue playing" Button automatically”。
扩展截图
下载Netflix Continue Playing Clicker扩展crx文件
下载Netflix Continue Playing Clicker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
No more leaving your couch only to click a button during your netflix and chill session. This extension clicks the Netflix "continue playing" Button automatically. If you planing on falling asleep or something else ;) you can always turn it off using the button in the taskbar. Have Fun
扩展基本信息
名称 | |
ID | klgocfagnjnpmjfmbdglcbjpchdbadhc |
官方URL | https://chrome.google.com/webstore/detail/netflix-continue-playing/klgocfagnjnpmjfmbdglcbjpchdbadhc |
简介 | This extension clicks the Netflix "continue playing" Button automatically |
文件大小 | 7.21 KB |
安装次数 | 299 |
当前版本 | 1.0 |
更新时间 | 2016-02-18 |
上架时间 | 2016-02-18 |
评分 | 2.33/5 共9次评分 |
开发者 | limered |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Netflix Continue Playing Clicker", "description": "This extension clicks the Netflix \"continue playing\" Button automatically", "version": "1.0", "content_scripts": [ { "matches": [ "*:\/\/www.netflix.com\/*" ], "js": [ "content\/content_script.js" ] } ], "background": { "scripts": [ "background\/background_script.js" ] }, "page_action": { "default_icon": "images\/icon.png", "default_title": "Netflix Clicker", "default_popup": "pageaction\/pageaction_popup.html" }, "permissions": [ "tabs", "storage" ] } |