forked from ttscoff/popclipextensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.plist
executable file
·71 lines (71 loc) · 1.78 KB
/
Config.plist
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Actions</key>
<array>
<dict>
<key>Image File</key>
<string>icon.png</string>
<key>Script Interpreter</key>
<string>/usr/bin/ruby</string>
<key>Shell Script File</key>
<string>script.rb</string>
<key>Title</key>
<string>Sum</string>
<key>Regular Expression</key>
<string>(?s)(.*)?\d+(.*)?</string>
<key>After</key>
<string>preview-result</string>
</dict>
</array>
<key>Options</key>
<array>
<dict>
<key>Option Identifier</key>
<string>separator</string>
<key>Option Type</key>
<string>string</string>
<key>Option Label</key>
<string>Separator</string>
<key>Option Default Value</key>
<string>,</string>
</dict>
<dict>
<key>Option Identifier</key>
<string>delimiter</string>
<key>Option Type</key>
<string>string</string>
<key>Option Label</key>
<string>Decimal Delimiter</string>
<key>Option Default Value</key>
<string>.</string>
</dict>
<dict>
<key>Option Identifier</key>
<string>formatoutput</string>
<key>Option Type</key>
<string>boolean</string>
<key>Option Label</key>
<string>Format Output</string>
<key>Option Default Value</key>
<string>0</string>
</dict>
</array>
<key>Credits</key>
<array>
<key>Name</key>
<string>Brett Terpstra</string>
<key>Link</key>
<string>http://brettterpstra.com</string>
</array>
<key>Extension Description</key>
<string>Totals all numbers found in selection.</string>
<key>Extension Identifier</key>
<string>com.brettterpstra.popclip.extension.sum</string>
<key>Extension Name</key>
<string>Sum</string>
<key>Version</key>
<integer>2</integer>
</dict>
</plist>