Skip to content

Commit 3a4a98f

Browse files
committed
使用vue+iviewui 重构
添加php数组/序列化功能 baiy#5 添加文本差异化工具 正则工具添加替换功能
1 parent d5a355f commit 3a4a98f

File tree

176 files changed

+14271
-9953
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

176 files changed

+14271
-9953
lines changed

.gitignore

+23-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1-
/.idea
2-
/release
3-
/server
1+
.DS_Store
2+
/node_modules
3+
/dist
4+
/public/manifest.json
5+
/id_rsa.pem
6+
7+
# local env files
8+
.env.local
9+
.env.*.local
10+
11+
# Log files
12+
npm-debug.log*
13+
yarn-debug.log*
14+
yarn-error.log*
15+
16+
# Editor directories and files
17+
.idea
18+
.vscode
19+
*.suo
20+
*.ntvs*
21+
*.njsproj
22+
*.sln
23+
*.sw*

README.md

+33-13
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## 安装
55
- 方法1: 在 [Chrome 网上应用店](https://chrome.google.com/webstore/detail/ipfcebkfhpkjeikaammlkcnalknjahmh)安装
66
- 方法2: [下载 .crx 安装包](https://github.com/baiy/chrome-tool/releases/latest)手动安装 [猛戳这里查看手动安装教程](http://www.cnplugins.com/tool/outline-install-crx-file.html)
7-
- 方法3: [百度网盘下载](https://pan.baidu.com/s/1mhWbqWC) 安装方法和方法2一致
7+
- 方法3: [百度网盘下载](https://pan.baidu.com/s/1mhWbqWC) 安装方法和方法2一致
88

99
> 方法3 不定期维护 仅供网络环境特别恶劣的同学使用
1010
@@ -19,24 +19,44 @@
1919
|二维码|`生成`,`解析`||
2020
|汉字转拼音|`声调`,`首字母`,`分隔符`||
2121
|IP地址查询|`运营商`,`城市`|`×`|
22-
|代码格式化|`json`, `xml`, `sql`, `css`||
22+
|代码格式化|`js`, `html`, `css`, `json`, `xml`, `sql`||
2323
|Unicode|双向转换||
24-
|进制转换|2-32进制互转||
24+
|进制转换|2-64进制互转||
2525
|正则表达式|字符匹配||
2626
|随机字符生成器|`批量`,`特殊字符`||
27+
|php数组/序列化|`数组`,`serialize`,`json`||
28+
|文本差异化对比|``,`单词`,`css`||
2729

2830
## 第三方开源库
2931
项目诞生离不开这些优秀的开源程序
30-
31-
- [layui](https://github.com/sentsin/layui/)
32-
- [jquery](https://github.com/jquery/jquery)
33-
- [js-base64](https://github.com/dankogai/js-base64)
34-
- [jquery.format](https://github.com/zachofalltrades/jquery.format)
35-
- [crypto-js](https://github.com/brix/crypto-js)
36-
- [pinyinjs](https://github.com/sxei/pinyinjs)
37-
- [jsqrcode-production](https://github.com/aray894/jsqrcode-production)
38-
- [qrcodejs](https://github.com/davidshimjs/qrcodejs)
39-
- [pconline](http://whois.pconline.com.cn/)
32+
33+
- [ajax-request](https://www.npmjs.com/package/ajax-request)
34+
- [code-formatter](https://www.npmjs.com/package/code-formatter)
35+
- [crypto-js](https://www.npmjs.com/package/crypto-js)
36+
- [ipinyinjs](https://www.npmjs.com/package/ipinyinjs)
37+
- [is-url](https://www.npmjs.com/package/is-url)
38+
- [iview](https://www.npmjs.com/package/iview)
39+
- [js-base64](https://www.npmjs.com/package/js-base64)
40+
- [lscache](https://www.npmjs.com/package/lscache)
41+
- [php-array-parser](https://www.npmjs.com/package/php-array-parser)
42+
- [phparr](https://www.npmjs.com/package/phparr)
43+
- [qrcode](https://www.npmjs.com/package/qrcode)
44+
- [qrcode-parser](https://www.npmjs.com/package/qrcode-parser)
45+
- [radix.js](https://www.npmjs.com/package/radix.js)
46+
- [serialize-php](https://www.npmjs.com/package/serialize-php)
47+
- [diff](https://www.npmjs.com/package/diff)
48+
- [vue](https://www.npmjs.com/package/vue)
49+
- [vue-prismjs](https://www.npmjs.com/package/vue-prismjs)
50+
- [vue-router](https://www.npmjs.com/package/vue-router)
51+
- [taobao](http://ip.taobao.com/)
52+
- [layui](https://github.com/sentsin/layui/)
53+
- [jquery](https://github.com/jquery/jquery)
54+
- [js-base64](https://github.com/dankogai/js-base64)
55+
- [jquery.format](https://github.com/zachofalltrades/jquery.format)
56+
- [pinyinjs](https://github.com/sxei/pinyinjs)
57+
- [jsqrcode-production](https://github.com/aray894/jsqrcode-production)
58+
- [qrcodejs](https://github.com/davidshimjs/qrcodejs)
59+
- [pconline](http://whois.pconline.com.cn/)
4060

4161
> 当然项目中还使用很多不知道姓名的大神的代码, 在这里就不一一感谢
4262

babel.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/app'
4+
]
5+
};

dome.jpg

19 KB
Loading

extension/popup/index.html

-62
This file was deleted.

extension/popup/popup.js

-5
This file was deleted.

extension/statics/background.js

Whitespace-only changes.

extension/statics/layui/css/layui.css

-2
This file was deleted.

extension/statics/layui/css/layui.mobile.css

-2
This file was deleted.

extension/statics/layui/css/modules/code.css

-2
This file was deleted.

0 commit comments

Comments
 (0)