Iconfonter icon indicating copy to clipboard operation
Iconfonter copied to clipboard

iconfont.cn 浏览器插件,支持生成内联 CSS、雪碧图 CSS、React 图标组件等。

Results 1 Iconfonter issues
Sort by recently updated
recently updated
newest added

参考:https://chrome.google.com/webstore/detail/iconfont-drag/ciidfiiknjgfbbeanndmhdpokmhpdfck/related?utm_source=chrome-ntp-icon 其核心代码: ```js /* * author: margox * author_url: https://margox.cn */ 'use strict'; var $ = document.querySelector.bind(document) var observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { var downloadDialog = mutation.target.querySelector('.download-dialog') if...