Instructables+
Automatically shows all steps for Instructables
什麼是Instructables+?
Instructables+是由Chris C開發的Chrome擴展程式,該擴展的主要功能是“Automatically shows all steps for Instructables”。
擴展截圖
下載Instructables+擴展crx文件
下載Instructables+擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This plugin was designed to redirect your browser to the page that shows all steps for an Instructable!
擴展基本資訊
名稱 | |
ID | aahehhoaebjhnmploicennmcopefepii |
官方網址 | https://chromewebstore.google.com/detail/instructables+/aahehhoaebjhnmploicennmcopefepii |
簡介 | Automatically shows all steps for Instructables |
檔案大小 | 261 KB |
安裝次數 | 104 |
目前版本 | 0.1.2.0 |
更新時間 | 2016-12-29 |
上架時間 | 2016-12-29 |
評分 | 3.67/5 共 6 次評分 |
開發者 | Chris C |
付費類型 | free |
擴展官網 | http://chriscarini.com |
支援的語言 | 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" ] } } |