Instructables+
Automatically shows all steps for Instructables
Cos'è Instructables+?
Instructables+ è un'estensione di Chrome sviluppata da Chris C, e la sua funzione principale è "Automatically shows all steps for Instructables".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Instructables+
Scarica i file di estensione Instructables+ 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
This plugin was designed to redirect your browser to the page that shows all steps for an Instructable!
Informazioni di Base sull'Estensione
Nome | |
ID | aahehhoaebjhnmploicennmcopefepii |
URL Ufficiale | https://chromewebstore.google.com/detail/instructables+/aahehhoaebjhnmploicennmcopefepii |
Descrizione | Automatically shows all steps for Instructables |
Dimensione del File | 261 KB |
Conteggio Installazioni | 104 |
Versione Corrente | 0.1.2.0 |
Ultimo Aggiornamento | 2016-12-29 |
Data di Pubblicazione | 2016-12-29 |
Valutazione | 3.67/5 Totale 6 Valutazioni |
Sviluppatore | Chris C |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://chriscarini.com |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Instructables+", "manifest_version": 2, "description": "Automatically shows all steps for Instructables", "version": "0.1.2.0", "content_scripts": [ { "js": [ "Instructables.js" ], "matches": [ "http:\/\/www.instructables.com\/id*" ] } ], "icons": { "128": "icon128.png", "48": "icon128.png" }, "content_security_policy": "script-src 'self' https:\/\/pagead2.googlesyndication.com\/pagead\/show_ads.js ; object-src 'self'", "options_page": "options.html", "background": { "scripts": [ "background.js" ] } } |