-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathInfo.plist
151 lines (151 loc) · 5.21 KB
/
Info.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?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>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
<string>Screen Capture Plugin</string>
<key>CFBundleExecutable</key>
<string>Screen Capture Plugin</string>
<key>CFBundleIdentifier</key>
<string>com.blacktree.Quicksilver.QSScreenCapturePlugIn</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>Screen Capture Plugin</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.7.2</string>
<key>CFBundleVersion</key>
<string>29</string>
<key>NSPrincipalClass</key>
<string>QSScreenCapturePlugIn</string>
<key>QSPlugIn</key>
<dict>
<key>author</key>
<string>Blacktree, Inc.</string>
<key>categories</key>
<array>
<string>Images</string>
<string>System</string>
</array>
<key>description</key>
<string>A set of actions that allow capturing the screen</string>
<key>extendedDescription</key>
<string><h2>Screen Capture Plugin</h2>
<p>This plugin adds support for using Grab.app to capture portions of your display to image files, which can then be manipulated by Quicksilver.
In order to see the objects added by the Screen Capture Plugin (they are visible in Quicksilver's first pane), you must enable the "Internal Commands" catalog entry, found in the <a href="qs://preferences#QSCatalogPrefPane">Catalog Preferences</a> under the "Quicksilver" side tab.<br>
</p>
<p>Note that all pictures captured with the Screen Capture Plugin are also saved to your Desktop.</p>
<h3>Command Objects</h3>
<p><strong> Capture Region </strong></p>
<p>This command object (run from Quicksilver's 1st pane) enables Grab.app in its "Capture Selection" mode. A cross hair is displayed on screen allowing you to drag a rectangle around what you want captured.
Once complete the captured region is returned to Quicksilver.</p>
<p><strong> Capture Window </strong></p>
<p>Similar to the 'Capture Region' command object, 'Capture Window' gives you allows you to capture a whole window, and return the corresponding image to Quicksilver</p>
<p><strong> Capture Screen </strong></p>
<p>The 'Capture Screen' command object takes a screenshot of your current screen and returns it to Quicksilver.</p>
<h3>Trigger Events</h3>
<p>Event Triggers can be run whenever an image is captured using this plug-in. The "Event Trigger Object" will refer to the image's file.</p></string>
<key>icon</key>
<string>com.apple.Grab</string>
<key>qsversion</key>
<string>3525</string>
<key>relatedBundles </key>
<array/>
</dict>
<key>QSRegistration</key>
<dict>
<key>QSClasses</key>
<dict>
<key>QSScreenCapturePlugIn</key>
<string>QSScreenCapturePlugIn</string>
</dict>
<key>QSInternalMessages</key>
<dict>
<key>QSCaptureRegionAction</key>
<dict>
<key>actionClass</key>
<string>QSScreenCapturePlugIn</string>
<key>actionSelector</key>
<string>captureRegion:</string>
<key>icon</key>
<string>com.apple.Grab</string>
<key>name</key>
<string>Capture Region</string>
<key>runInMainThread</key>
<true/>
</dict>
<key>QSCaptureScreenAction</key>
<dict>
<key>actionClass</key>
<string>QSScreenCapturePlugIn</string>
<key>actionSelector</key>
<string>captureScreen:</string>
<key>icon</key>
<string>com.apple.Grab</string>
<key>name</key>
<string>Capture Screen</string>
<key>runInMainThread</key>
<true/>
</dict>
<key>QSCaptureWindowAction</key>
<dict>
<key>actionClass</key>
<string>QSScreenCapturePlugIn</string>
<key>actionSelector</key>
<string>captureWindow:</string>
<key>icon</key>
<string>com.apple.Grab</string>
<key>name</key>
<string>Capture Window</string>
<key>runInMainThread</key>
<true/>
</dict>
</dict>
<key>QSTriggerEvents</key>
<dict>
<key>QSCapturedRegion</key>
<dict>
<key>icon</key>
<string>com.apple.Grab</string>
<key>name</key>
<string>Region Captured ☿</string>
<key>provider</key>
<string>QSScreenCapturePlugIn</string>
<key>type</key>
<string>Screen Capture</string>
</dict>
<key>QSCapturedScreen</key>
<dict>
<key>icon</key>
<string>com.apple.Grab</string>
<key>name</key>
<string>Screen Captured ☿</string>
<key>provider</key>
<string>QSScreenCapturePlugIn</string>
<key>type</key>
<string>Screen Capture</string>
</dict>
<key>QSCapturedWindow</key>
<dict>
<key>icon</key>
<string>com.apple.Grab</string>
<key>name</key>
<string>Window Captured ☿</string>
<key>provider</key>
<string>QSScreenCapturePlugIn</string>
<key>type</key>
<string>Screen Capture</string>
</dict>
</dict>
</dict>
<key>QSRequirements</key>
<dict>
<key>version</key>
<string>4001</string>
</dict>
</dict>
</plist>