Chocolate Factory
Select/import multiple packages on chocolatey.org
什麼是Chocolate Factory?
Chocolate Factory是由ifugu開發的Chrome擴展程式,該擴展的主要功能是“Select/import multiple packages on chocolatey.org”。
擴展截圖
下載Chocolate Factory擴展crx文件
下載Chocolate Factory擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Chocolatey is an awesome package manager for Windows. It allows installation, updates and uninstallation of software from simple commands just like package managers on other operating systems. Problem: There's no way to select multiple packages on chocolatey.org. Solution: Chocolate Factory adds checkboxes beside each command. Just check the packages you want to install and then click the Copy button at the bottom of the page. A single command for installing the selected packages will be copied to the clipboard. Two more features of Chocolate Factory: 1) You can now click on the install command for any package and it will be copied to the clipboard. 2) Chocolate Factory also supports importing a list of packages. It accepts the output of the 'choco list -lo' command for importing your previously installed packages.
擴展基本資訊
名稱 | Chocolate Factory |
ID | haaendbfglnbfcbmfgfkhjplbakbbpbj |
官方網址 | https://chromewebstore.google.com/detail/chocolate-factory/haaendbfglnbfcbmfgfkhjplbakbbpbj |
簡介 | Select/import multiple packages on chocolatey.org |
檔案大小 | 114 KB |
安裝次數 | 64 |
目前版本 | 1.1.0 |
更新時間 | 2014-09-30 |
上架時間 | 2014-09-29 |
評分 | 3.00/5 共 5 次評分 |
開發者 | ifugu |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://chocolatey.org/ |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chocolate Factory", "short_name": "ChocoFac", "version": "1.1.0", "description": "Select\/import multiple packages on chocolatey.org", "author": "Corey Meredith", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "homepage_url": "http:\/\/halfduplex.us\/", "permissions": [ "clipboardWrite" ], "content_scripts": [ { "exclude_globs": [], "include_globs": [ "*" ], "js": [ "scripts\/jquery.min.js", "scripts\/jquery.reveal.js", "scripts\/toastr.min.js", "scripts\/chocolate-factory.user.js" ], "css": [ "css\/reveal.min.css", "css\/toastr.min.css", "css\/icomoon.css", "css\/chocolate-factory.css" ], "matches": [ "http:\/\/*.chocolatey.org\/*", "https:\/\/*.chocolatey.org\/*" ], "run_at": "document_end" } ], "background": { "page": "clipboard.html" }, "web_accessible_resources": [ "images\/modal-gloss.png", "fonts\/icomoon.woff", "fonts\/WillyWonka_subset.woff", "scripts\/toastr.min.js.map", "scripts\/jquery.min.js.map" ] } |