Instructables+
Automatically shows all steps for Instructables
Vad är Instructables+?
Instructables+ är en Chrome-tillägg utvecklad av Chris C, och dess huvudfunktion är "Automatically shows all steps for Instructables".
Tilläggsskärmbilder
Ladda ner Instructables+-förlängningens CRX-fil
Ladda ner Instructables+-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This plugin was designed to redirect your browser to the page that shows all steps for an Instructable!
Grundläggande Information om Tillägg
Namn | |
ID | aahehhoaebjhnmploicennmcopefepii |
Officiell webbadress | https://chromewebstore.google.com/detail/instructables+/aahehhoaebjhnmploicennmcopefepii |
Beskrivning | Automatically shows all steps for Instructables |
Filstorlek | 261 KB |
Antal Installationer | 104 |
Aktuell Version | 0.1.2.0 |
Senast Uppdaterad | 2016-12-29 |
Publiceringsdatum | 2016-12-29 |
Betyg | 3.67/5 Totalt 6 Betyg |
Utvecklare | Chris C |
Betalningssätt | free |
Tilläggswebbplats | http://chriscarini.com |
Stödda Språk | 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" ] } } |