iconfont-helper
支持iconfont一键添加购物车、批量下载、在线批量改色、一键复制等功能。http://github.com/dawangraoming
What is iconfont-helper?
iconfont-helper is a Chrome extension developed by dawangraoming, and its main feature is "支持iconfont一键添加购物车、批量下载、在线批量改色、一键复制等功能。http://github.com/dawangraoming".
Extension Screenshots
Download iconfont-helper Extension CRX File
Download iconfont-helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
v1.2
增加图标一键复制功能;
增加图像尺寸记录上次设置的数值功能;
增加一键设置当前页面中所有图标的颜色功能。
------
v1.1
支持PNG、SVG、JPG、WEBP类型下载;
增加下载图像尺寸设置。
------
v1.0
支持更多的iconfont页面批量添加进购物车功能,支持搜索页面添加,支持图库内添加;
增加反选功能。
------
v0.1
支持图标库批量下载功能。
------
项目源代码地址:http://github.com/dawangraoming
问题反馈:https://github.com/dawangraoming/iconfont-helper-chrome-extension/issues Extension Basic Information
| Name | |
| ID | naogknojdhkjjkbcjndmpkoleijgabdj |
| Official URL | https://chromewebstore.google.com/detail/iconfont-helper/naogknojdhkjjkbcjndmpkoleijgabdj |
| Description | 支持iconfont一键添加购物车、批量下载、在线批量改色、一键复制等功能。http://github.com/dawangraoming |
| File Size | 119 KB |
| Installation Count | 2,000 |
| Current Version | 1.2.1 |
| Last Updated | 2019-03-14 |
| Publish Date | 2019-03-14 |
| Rating | 5.00/5 Total 5 Ratings |
| Developer | dawangraoming |
| Payment Type | free |
| Extension Website | https://github.com/dawangraoming/iconfont-helper-chrome-extension |
| Help Page URL | https://github.com/dawangraoming/iconfont-helper-chrome-extension |
| Supported Languages | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "iconfont-helper",
"description": "\u652f\u6301iconfont\u4e00\u952e\u6dfb\u52a0\u8d2d\u7269\u8f66\u3001\u6279\u91cf\u4e0b\u8f7d\u3001\u5728\u7ebf\u6279\u91cf\u6539\u8272\u3001\u4e00\u952e\u590d\u5236\u7b49\u529f\u80fd\u3002http:\/\/github.com\/dawangraoming",
"version": "1.2.1",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"browser_action": {
"default_title": "iconfont helper",
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.iconfont.cn\/*"
],
"css": [
"context-script.css"
],
"js": [
"context-script.js"
]
}
],
"manifest_version": 2
} | |