-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsn.txt
86 lines (54 loc) · 3.3 KB
/
sn.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
Google Chrome 以英文启动:
LINUX:
LANGUAGE=en google-chrome
WINDOWS:
chrome.exe --lang=en
note:
经测试,Windows上通过加--lang参数启动Chrome并未更改Chrome语言,不过可以通过Chrome设置来更改默认语言。
在 Firefox 上调试:
关闭附加组件签名验证
https://support.mozilla.org/zh-CN/kb/add-ons-signing-firefox?as=u&utm_source=inproduct
==========================================================================================================
A browser extension that greatly improves the productivity of using Jenkins.
This extension can:
1. Job monitoring: Monitor the build state of Jenkins Job and display a notification when the build is complete. Provide a "monitor" interface to view the build status of the Job of interest at any time. Provides filtering capabilities to filter Jobs based on build results.
2. Build parameter view: It's easy to quickly view build information and build parameters under each Build page and its subpages. A button to view the last/next build parameters is available, and the complete build log can be downloaded directly to the local.
3. Node disk space monitoring: Monitor the amount of the Jenkins node's disk space. If the amount of the remaining space of the node is less than or equal to a given threshold, the notification will alert and provide a monitor page to check the amount of the remaining space of the node at any time.
4. Intelligent search in the address bar: enter jk in the address bar, press the space key and enter intelligent search mode. Enter the job name to quickly match the corresponding Jenkins Job link.
5. Job Statistics: Statistics Job's running node / timed build schedule / whether to disable / whether to allow concurrent information and so on.
6. Parameter stashing and recovery: At the bottom of the Build/Rebuild page, two buttons are generated, Stash Parameters and Recover Parameters. Click Stash Parameters to save the parameter values filled in the current page. Click Recover Parameters to restore the last saved parameter values to the current page.
7. Custom settings: Some personal settings can be made for your unique needs.
Source code:
https://github.com/liying2008/jenkins-helper
==========================================================================================================
单一用途说明
Monitoring Jenkins build state and node state and helping Ops use Jenkins.
需请求storage的理由
Used to store this extension configuration information.
需请求notifications的理由
Notify Ops of build status and node status.
需请求tabs的理由
Determine if the current page is a Jenkins build page.
需请求downloads的理由
Download the Jenkins build log.
需请求主机权限的理由
Since Jenkins is an open source and self-deployable site, the extension cannot determine the URL of Jenkins used by the user.
==========================================================================================================
色彩主题调试工具
配色方案参考:
https://colorhunt.co/
https://coolors.co/
明暗色:
https://www.tutorialrepublic.com/html-reference/html-color-picker.php
https://sass.js.org/
示例代码:
$linkcolour: #a98467;
a {
color: $linkcolour;
}
a.darker {
color: darken($linkcolour, 10%);
}
a.lighter {
color: lighten($linkcolour, 10%);
}