Instructables+
Automatically shows all steps for Instructables
What is Instructables+?
Instructables+ is a Chrome extension developed by Chris C, and its main feature is "Automatically shows all steps for Instructables".
Extension Screenshots
Download Instructables+ Extension CRX File
Download Instructables+ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This plugin was designed to redirect your browser to the page that shows all steps for an Instructable!
Extension Basic Information
Name | |
ID | aahehhoaebjhnmploicennmcopefepii |
Official URL | https://chromewebstore.google.com/detail/instructables+/aahehhoaebjhnmploicennmcopefepii |
Description | Automatically shows all steps for Instructables |
File Size | 261 KB |
Installation Count | 104 |
Current Version | 0.1.2.0 |
Last Updated | 2016-12-29 |
Publish Date | 2016-12-29 |
Rating | 3.67/5 Total 6 Ratings |
Developer | Chris C |
Payment Type | free |
Extension Website | http://chriscarini.com |
Supported Languages | 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" ] } } |