Instructables+
Automatically shows all steps for Instructables
Hvad er Instructables+?
Instructables+ er en Chrome-udvidelse udviklet af Chris C, og dens hovedfunktion er "Automatically shows all steps for Instructables".
Udvidelsesskærmbilleder
Download Instructables+-udvidelses-CRX-fil
Download Instructables+-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
This plugin was designed to redirect your browser to the page that shows all steps for an Instructable!
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | aahehhoaebjhnmploicennmcopefepii |
Officiel URL | https://chromewebstore.google.com/detail/instructables+/aahehhoaebjhnmploicennmcopefepii |
Beskrivelse | Automatically shows all steps for Instructables |
Filstørrelse | 261 KB |
Antal Installationer | 104 |
Nuværende Version | 0.1.2.0 |
Senest Opdateret | 2016-12-29 |
Udgivelsesdato | 2016-12-29 |
Bedømmelse | 3.67/5 Samlet 6 Bedømmelser |
Udvikler | Chris C |
Betalingsmetode | free |
Udvidelseswebsted | http://chriscarini.com |
Understøttede Sprog | 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" ] } } |