-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?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>AppleScript File</key> | ||
<string>eudic.applescript</string> | ||
<key>Image File</key> | ||
<string>eudic.png</string> | ||
<key>Title</key> | ||
<string>Search In Eudic</string> | ||
</dict> | ||
</array> | ||
<key>Options</key> | ||
<array> | ||
<dict> | ||
<key>Option Identifier</key> | ||
<string>eudic_version</string> | ||
<key>Option Label</key> | ||
<dict> | ||
<key>en</key> | ||
<string>EuDic Version</string> | ||
</dict> | ||
<key>Option Type</key> | ||
<string>multiple</string> | ||
<key>Option Values</key> | ||
<array> | ||
<string>com.eusoft.freeeudic</string> | ||
<string>com.eusoft.eudic</string> | ||
</array> | ||
<key>Option Description</key> | ||
<string></string> | ||
</dict> | ||
</array> | ||
<key>Extension Description</key> | ||
<string>Look up the selected text in Eudic, the Chinese-English dictionary.</string> | ||
<key>Extension Identifier</key> | ||
<string>com.pilotmoon1.popclip.extension.eudic</string> | ||
<key>Extension Name</key> | ||
<string>Eudic</string> | ||
<key>Apps</key> | ||
<array> | ||
<dict> | ||
<key>Bundle Identifier</key> | ||
<array> | ||
<string>com.eusoft.freeeudic</string> | ||
<string>com.eusoft.eudic</string> | ||
</array> | ||
<key>Check Installed</key> | ||
<false/> | ||
<key>Link</key> | ||
<string>http://www.eudic.net/eudic/mac_dictionary.aspx</string> | ||
<key>Name</key> | ||
<string>Eudic</string> | ||
</dict> | ||
</array> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
tell application id "{popclip option eudic_version}" | ||
activate | ||
show dic with word "{popclip text}" | ||
end tell |