Netflix Continue Playing Clicker
This extension clicks the Netflix "continue playing" Button automatically
Hvad er Netflix Continue Playing Clicker?
Netflix Continue Playing Clicker er en Chrome-udvidelse udviklet af limered, og dens hovedfunktion er "This extension clicks the Netflix "continue playing" Button automatically".
Udvidelsesskærmbilleder
Download Netflix Continue Playing Clicker-udvidelses-CRX-fil
Download Netflix Continue Playing Clicker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | klgocfagnjnpmjfmbdglcbjpchdbadhc |
Officiel URL | https://chrome.google.com/webstore/detail/netflix-continue-playing/klgocfagnjnpmjfmbdglcbjpchdbadhc |
Beskrivelse | This extension clicks the Netflix "continue playing" Button automatically |
Filstørrelse | 7.21 KB |
Antal Installationer | 299 |
Nuværende Version | 1.0 |
Senest Opdateret | 2016-02-18 |
Udgivelsesdato | 2016-02-18 |
Bedømmelse | 2.33/5 Samlet 9 Bedømmelser |
Udvikler | limered |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |