repl.it download
Adds a download button to repl.it
什么是repl.it download?
repl.it download是由Amish Shah开发的Chrome扩展程序,该扩展的主要功能是“Adds a download button to repl.it”。
扩展截图
下载repl.it download扩展crx文件
下载repl.it download扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | pgmcojeijjhacgkkjaakdafmloncpema |
| 官方URL | https://chromewebstore.google.com/detail/replit-download/pgmcojeijjhacgkkjaakdafmloncpema |
| 简介 | Adds a download button to repl.it |
| 文件大小 | 110 KB |
| 安装次数 | 4,046 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2016-06-12 |
| 上架时间 | 2016-06-12 |
| 评分 | 1.50/5 共2次评分 |
| 开发者 | Amish Shah |
| 付费类型 | free |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "repl.it download",
"description": "Adds a download button to repl.it",
"version": "1.0.1",
"manifest_version": 2,
"permissions": [
"downloads"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https:\/\/repl.it\/*"
],
"js": [
"jquery-3.0.0.min.js",
"inject.js"
]
}
],
"web_accessible_resources": [
"main.js",
"res\/arrow.png"
],
"browser_action": {
"default_title": "REPL.it Download",
"default_icon": "res\/icon.png"
},
"icons": {
"16": "res\/icon16.png",
"32": "res\/icon32.png",
"48": "res\/icon48.png",
"128": "res\/icon128.png"
}
} | |