iconfont-helper
支持iconfont一键添加购物车、批量下载、在线批量改色、一键复制等功能。http://github.com/dawangraoming
Qu'est-ce que iconfont-helper ?
iconfont-helper est une extension Chrome développée par dawangraoming, et sa fonction principale est "支持iconfont一键添加购物车、批量下载、在线批量改色、一键复制等功能。http://github.com/dawangraoming".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension iconfont-helper
Téléchargez les fichiers d'extension iconfont-helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | iconfont-helper |
ID | naogknojdhkjjkbcjndmpkoleijgabdj |
URL Officiel | https://chromewebstore.google.com/detail/iconfont-helper/naogknojdhkjjkbcjndmpkoleijgabdj |
Description | 支持iconfont一键添加购物车、批量下载、在线批量改色、一键复制等功能。http://github.com/dawangraoming |
Taille du Fichier | 119 KB |
Nombre d'Installations | 2,000 |
Version Actuelle | 1.2.1 |
Dernière Mise à Jour | 2019-03-14 |
Date de Publication | 2019-03-14 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | dawangraoming |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/dawangraoming/iconfont-helper-chrome-extension |
URL de la Page d'Aide | https://github.com/dawangraoming/iconfont-helper-chrome-extension |
Langues Prises en Charge | 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 } |