jsFiddlr
zip up and download your fiddle from jsFiddle
什么是jsFiddlr?
jsFiddlr是由David Justice开发的Chrome扩展程序,该扩展的主要功能是“zip up and download your fiddle from jsFiddle”。
下载jsFiddlr扩展crx文件
下载jsFiddlr扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
An extension to zip and and download your jsFiddles in the browser 扩展基本信息
| 名称 | |
| ID | fcmbijlhdapkibamnedmjohkdhhijlgb |
| 官方URL | https://chrome.google.com/webstore/detail/jsfiddlr/fcmbijlhdapkibamnedmjohkdhhijlgb |
| 简介 | zip up and download your fiddle from jsFiddle |
| 文件大小 | 21.46 KB |
| 安装次数 | 15 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2013-11-18 |
| 上架时间 | 2013-11-18 |
| 开发者 | David Justice |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/meandavejustice/jsFidlr |
| 隐私政策页面URL | https://discuss.ipfs.tech/privacy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "jsFiddlr",
"version": "0.0.1",
"manifest_version": 2,
"description": "zip up and download your fiddle from jsFiddle",
"homepage_url": "http:\/\/github.com\/meandavejustice",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"background": {
"page": "src\/bg\/background.html",
"persistent": true
},
"browser_action": {
"default_icon": "icons\/icon19.png",
"default_title": "jsFiddlr"
},
"permissions": [
"tabs",
"notifications",
"http:\/\/jsfiddle.net\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.google.com\/*"
],
"js": [
"src\/inject\/inject.js"
]
}
]
} | |