Skip to content

Commit 0337b9d

Browse files
committed
ok
1 parent 54cec4e commit 0337b9d

7 files changed

Lines changed: 24 additions & 11 deletions

File tree

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1+
![userscript+.gif](https://cdn.rawgit.com/jae-jae/_resources/master/img/userscript+.gif)
12
# Userscript+
3+
[![Tampermonkey](https://img.shields.io/badge/Tampermonkey-up to date-green.svg)](https://tampermonkey.net/)
4+
[![webpack](https://img.shields.io/badge/webpack-3.x-orange.svg)](https://github.com/webpack/webpack)
5+
[![Vue](https://img.shields.io/badge/Vue-2.4%2B-yellow.svg)](https://vuejs.org/)
6+
[![iView](https://img.shields.io/badge/iView-2.2.0-brightgreen.svg)](https://www.iviewui.com)
7+
[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
8+
[![i18n](https://img.shields.io/badge/i18n-PR-blue.svg)](https://github.com/jae-jae/Userscript-Plus/tree/master/src/common/lang)
9+
[![GitHub stars](https://img.shields.io/github/stars/badges/shields.svg?style=social&label=Star&style=flat-square)](https://github.com/jae-jae/Userscript-Plus)
10+
211
Show current site all UserJS,The easier way to install UserJs for Tampermonkey.
312

413
显示当前网站的所有可用Tampermonkey脚本

dist/show-site-all-userjs.user.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// @name Userscript+ : Show Site All UserJS
33
// @name:zh Userscript+ : 显示当前网站所有可用的UserJS脚本 Jaeger
44
// @name:zh-CN Userscript+ : 显示当前网站所有可用的UserJS脚本 Jaeger
5-
// @namespace https://gist.github.com/jae-jae/39d526079cb2408389129caf98debc29
5+
// @namespace https://github.com/jae-jae/Userscript-Plus
66
// @version 2.0
77
// @description Show current site all UserJS,The easier way to install UserJs for Tampermonkey.
88
// @description:zh 显示当前网站的所有可用UserJS(Tampermonkey)脚本,交流QQ群:104267383
@@ -96,7 +96,7 @@ var inline_src = (<><![CDATA[
9696
this.addEventListener('min',()=>{
9797
setTimeout(()=>{
9898
this.setSize(370,51)
99-
},800)
99+
},500)
100100
})
101101

102102
this.addEventListener('close',()=>{

dist/ui.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/common/lang/en-US.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export default {
1818
paypal: 'PayPal',
1919
closeDonate: 'Close Donate',
2020
feedback: 'Feedback',
21-
close: 'No longer show'
21+
close: 'No longer show',
22+
scriptInstalling: 'Script installing...'
2223
}
23-
}
24+
}

src/common/lang/zh-CN.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export default {
1818
paypal: 'PayPal',
1919
closeDonate: '关闭打赏',
2020
feedback: '反馈',
21-
close: '该网站本次会话的所有页面都不再显示'
21+
close: '该网站本次会话的所有页面都不再显示',
22+
scriptInstalling: '脚本安装中...'
2223
}
23-
}
24+
}

src/components/Table.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
<i18n path="table.tips" tag="span">
88
<Badge place="count" :count="count" style="padding:0px 5px;"></Badge>
99
</i18n>
10+
<span v-show="showBody">
11+
- Userscript+
12+
</span>
1013
</div>
1114
<div slot="extra">
1215
<span v-show="showBody">
@@ -191,8 +194,7 @@
191194
},
192195
on: {
193196
click: (event) => {
194-
// Tools.msg('脚本安装中...')
195-
this.$Message.info('脚本安装中...')
197+
this.$Message.info(this.$t('table.scriptInstalling'))
196198
Tools.installUserJs(params.row.code_url)
197199
}
198200
}

src/user.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ var inline_src = (<><![CDATA[
9696
this.addEventListener('min',()=>{
9797
setTimeout(()=>{
9898
this.setSize(370,51)
99-
},800)
99+
},500)
100100
})
101101

102102
this.addEventListener('close',()=>{

0 commit comments

Comments
 (0)