Netflix Continue Playing Clicker
This extension clicks the Netflix "continue playing" Button automatically
Cos'è Netflix Continue Playing Clicker?
Netflix Continue Playing Clicker è un'estensione di Chrome sviluppata da limered, e la sua funzione principale è "This extension clicks the Netflix "continue playing" Button automatically".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Netflix Continue Playing Clicker
Scarica i file di estensione Netflix Continue Playing Clicker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | klgocfagnjnpmjfmbdglcbjpchdbadhc |
URL Ufficiale | https://chrome.google.com/webstore/detail/netflix-continue-playing/klgocfagnjnpmjfmbdglcbjpchdbadhc |
Descrizione | This extension clicks the Netflix "continue playing" Button automatically |
Dimensione del File | 7.21 KB |
Conteggio Installazioni | 299 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2016-02-18 |
Data di Pubblicazione | 2016-02-18 |
Valutazione | 2.33/5 Totale 9 Valutazioni |
Sviluppatore | limered |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |