Netflix Continue Playing Clicker
This extension clicks the Netflix "continue playing" Button automatically
Netflix Continue Playing Clickerคืออะไร?
Netflix Continue Playing Clicker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย limered และคุณลักษณะหลักของมันคือ "This extension clicks the Netflix "continue playing" Button automatically"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Continue Playing Clicker
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |