Instructables+
Automatically shows all steps for Instructables
Apa itu Instructables+?
Instructables+ adalah ekstensi Chrome yang dikembangkan oleh Chris C, dan fitur utamanya adalah "Automatically shows all steps for Instructables".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Instructables+
Unduh file ekstensi Instructables+ dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
This plugin was designed to redirect your browser to the page that shows all steps for an Instructable!
Informasi Dasar Ekstensi
Nama | |
ID | aahehhoaebjhnmploicennmcopefepii |
URL Resmi | https://chromewebstore.google.com/detail/instructables+/aahehhoaebjhnmploicennmcopefepii |
Deskripsi | Automatically shows all steps for Instructables |
Ukuran File | 261 KB |
Jumlah Instalasi | 104 |
Versi Saat Ini | 0.1.2.0 |
Terakhir Diperbarui | 2016-12-29 |
Tanggal Publikasi | 2016-12-29 |
Penilaian | 3.67/5 Total 6 Penilaian |
Pengembang | Chris C |
Tipe Pembayaran | free |
Situs Ekstensi | http://chriscarini.com |
Bahasa yang Didukung | 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" ] } } |