├── .gitignore ├── Appcast.xml ├── Assets ├── .icon.iconset │ ├── .icon_XYZ.png │ ├── icon_128x128.png │ ├── icon_128x128@2x.png │ ├── icon_16x16.png │ ├── icon_16x16@2x.png │ ├── icon_256x256.png │ ├── icon_256x256@2x.png │ ├── icon_32x32.png │ ├── icon_32x32@2x.png │ ├── icon_512x512.png │ └── icon_512x512@2x.png ├── Flashlight icon.sketch │ ├── Data │ ├── metadata │ └── version ├── FlashlightTool icon.sketch ├── Generic Plugin icon.sketch │ ├── Data │ ├── metadata │ └── version ├── Icon.icns ├── flat.sketch │ ├── Data │ ├── metadata │ └── version ├── flat2 circle.sketch │ ├── Data │ ├── metadata │ └── version ├── flat2.sketch │ ├── Data │ ├── metadata │ └── version ├── screenshot.sketch │ ├── Data │ ├── metadata │ └── version └── statusitem.sketch │ ├── Data │ ├── metadata │ └── version ├── Docs ├── Internationalization.markdown └── Tutorial.markdown ├── Example Plugins ├── Say Plugin with Settings │ └── say-with-settings.bundle │ │ ├── Icon.png │ │ ├── README.markdown │ │ ├── examples.txt │ │ ├── info.json │ │ ├── options.json │ │ ├── plugin.py │ │ └── preferences.json └── Simple Say Plugin │ └── say.bundle │ ├── examples.txt │ ├── examples_de.txt │ ├── examples_fr.txt │ ├── info.json │ └── plugin.py ├── FlashlightApp ├── CHANGES ├── Crashlytics.framework │ ├── Crashlytics │ ├── Headers │ ├── Modules │ ├── Resources │ ├── Versions │ │ ├── A │ │ │ ├── Crashlytics │ │ │ ├── Headers │ │ │ │ └── Crashlytics.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ └── Current │ └── run ├── EasySIMBL │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── ConvenienceCategories.h │ ├── ConvenienceCategories.m │ ├── Crashlytics.framework │ │ ├── Crashlytics │ │ ├── Headers │ │ ├── Modules │ │ ├── Resources │ │ ├── Versions │ │ │ ├── A │ │ │ │ ├── Crashlytics │ │ │ │ ├── Headers │ │ │ │ │ └── Crashlytics.h │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ └── Current │ │ └── run │ ├── Flashlight-Info.plist │ ├── Flashlight-Prefix.pch │ ├── GenericPluginIcon.icns │ ├── ITSwitch │ │ ├── ITSwitch+Additions.h │ │ ├── ITSwitch+Additions.m │ │ ├── ITSwitch.h │ │ └── ITSwitch.m │ ├── Icon.icns │ ├── Icons.xcassets │ │ ├── asterisk.imageset │ │ │ ├── Contents.json │ │ │ └── asterisk@2x.png │ │ ├── cloud.imageset │ │ │ ├── Contents.json │ │ │ └── cloud.png │ │ ├── cog.imageset │ │ │ ├── Contents.json │ │ │ └── cog.png │ │ ├── console.imageset │ │ │ ├── Contents.json │ │ │ └── console.png │ │ ├── download.imageset │ │ │ ├── Contents.json │ │ │ └── download.png │ │ ├── info.imageset │ │ │ ├── Contents.json │ │ │ └── info.png │ │ ├── media.imageset │ │ │ ├── Contents.json │ │ │ └── media.png │ │ ├── meta.imageset │ │ │ ├── Contents.json │ │ │ └── meta.png │ │ ├── newspaper.imageset │ │ │ ├── Contents.json │ │ │ └── newspaper.png │ │ ├── palette.imageset │ │ │ ├── Contents.json │ │ │ └── palette.png │ │ ├── plugin.imageset │ │ │ ├── Contents.json │ │ │ └── plugin.png │ │ ├── search.imageset │ │ │ ├── Contents.json │ │ │ └── search.png │ │ ├── star.imageset │ │ │ ├── Contents.json │ │ │ └── star.png │ │ ├── translate.imageset │ │ │ ├── Contents.json │ │ │ └── translate.png │ │ ├── update.imageset │ │ │ ├── Contents.json │ │ │ └── loop.png │ │ └── wrench.imageset │ │ │ ├── Contents.json │ │ │ └── wrench.png │ ├── InfoPlist.strings │ ├── InstalledPluginListRenderer.h │ ├── InstalledPluginListRenderer.m │ ├── Localizable.strings │ ├── MainMenu.xib │ ├── NSURLComponents+ValueForQueryKey.h │ ├── NSURLComponents+ValueForQueryKey.m │ ├── PluginDirectoryAPI.h │ ├── PluginDirectoryAPI.m │ ├── PluginEditorWindowController.h │ ├── PluginEditorWindowController.m │ ├── PluginEditorWindowController.xib │ ├── PluginInstallManager.h │ ├── PluginInstallManager.m │ ├── PluginInstallTask.h │ ├── PluginInstallTask.m │ ├── PluginList.html │ ├── PluginListContent.html │ ├── PluginListController.h │ ├── PluginListController.m │ ├── PluginModel.h │ ├── PluginModel.m │ ├── PrefEditorTableView.h │ ├── PrefEditorTableView.m │ ├── PrefEditorWindow.h │ ├── PrefEditorWindow.m │ ├── PrefEditorWindow.xib │ ├── SearchPluginEditorWindowController.h │ ├── SearchPluginEditorWindowController.m │ ├── SearchPluginEditorWindowController.xib │ ├── SearchTemplate.bundle │ │ ├── examples.txt │ │ ├── info.json │ │ ├── plugin.py │ │ └── workflow.workflow │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── QuickLook │ │ │ └── Thumbnail.png │ │ │ └── document.wflow │ ├── StarterPack.h │ ├── StarterPack.m │ ├── UpdateChecker.h │ ├── UpdateChecker.m │ ├── WorkflowTemplate.bundle │ │ ├── examples.txt │ │ ├── info.json │ │ ├── plugin.py │ │ └── workflow.workflow │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── QuickLook │ │ │ └── Thumbnail.png │ │ │ └── document.wflow │ ├── cs.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── de.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── dsa_pub.pem │ ├── el.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── MainMenu.xib │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── es.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── fr.lproj │ │ ├── Credits.rtf │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── it.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── ja.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── ko.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── main.m │ ├── nl.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── no.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── pl.lproj │ │ ├── Localizable.strings │ │ └── MoveApplication.strings │ ├── pt.lproj │ │ └── Localizable.strings │ ├── ru.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── sv.lproj │ │ └── Localizable.strings │ ├── tr.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── zh-Hans.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ └── zipzap │ │ ├── ZZAESDecryptInputStream.h │ │ ├── ZZAESDecryptInputStream.mm │ │ ├── ZZArchive.h │ │ ├── ZZArchive.mm │ │ ├── ZZArchiveEntry.h │ │ ├── ZZArchiveEntry.m │ │ ├── ZZArchiveEntryWriter.h │ │ ├── ZZChannel.h │ │ ├── ZZChannelOutput.h │ │ ├── ZZConstants.h │ │ ├── ZZConstants.m │ │ ├── ZZDataChannel.h │ │ ├── ZZDataChannel.m │ │ ├── ZZDataChannelOutput.h │ │ ├── ZZDataChannelOutput.m │ │ ├── ZZDataProvider.h │ │ ├── ZZDeflateOutputStream.h │ │ ├── ZZDeflateOutputStream.m │ │ ├── ZZError.h │ │ ├── ZZError.m │ │ ├── ZZFileChannel.h │ │ ├── ZZFileChannel.m │ │ ├── ZZFileChannelOutput.h │ │ ├── ZZFileChannelOutput.m │ │ ├── ZZHeaders.h │ │ ├── ZZInflateInputStream.h │ │ ├── ZZInflateInputStream.m │ │ ├── ZZNewArchiveEntry.h │ │ ├── ZZNewArchiveEntry.mm │ │ ├── ZZNewArchiveEntryWriter.h │ │ ├── ZZNewArchiveEntryWriter.mm │ │ ├── ZZOldArchiveEntry.h │ │ ├── ZZOldArchiveEntry.mm │ │ ├── ZZOldArchiveEntryWriter.h │ │ ├── ZZOldArchiveEntryWriter.mm │ │ ├── ZZScopeGuard.h │ │ ├── ZZStandardCryptoEngine.cpp │ │ ├── ZZStandardCryptoEngine.h │ │ ├── ZZStandardDecryptInputStream.h │ │ ├── ZZStandardDecryptInputStream.mm │ │ ├── ZZStoreOutputStream.h │ │ ├── ZZStoreOutputStream.m │ │ ├── zipzap-Prefix.pch │ │ └── zipzap.h ├── Flashlight.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Flashlight.xcscheme ├── Flashlight.xcworkspace │ └── contents.xcworkspacedata ├── FlashlightKit │ ├── FlashlightKit.xcodeproj │ │ └── project.pbxproj │ ├── FlashlightKit │ │ ├── BuiltinModules │ │ │ └── i18n.py │ │ ├── DAU.h │ │ ├── DAU.m │ │ ├── Finder.h │ │ ├── FlashlightIconResolution.h │ │ ├── FlashlightIconResolution.m │ │ ├── FlashlightKit.h │ │ ├── FlashlightQueryEngine.h │ │ ├── FlashlightQueryEngine.m │ │ ├── FlashlightResult.h │ │ ├── FlashlightResult.m │ │ ├── FlashlightResultView.h │ │ ├── FlashlightResultView.m │ │ ├── FlashlightSystemHelpers.h │ │ ├── FlashlightSystemHelpers.m │ │ ├── FlashlightWebScriptObject.h │ │ ├── FlashlightWebScriptObject.m │ │ ├── Info.plist │ │ ├── NSObject+InternationalizedValueForKey.h │ │ ├── NSObject+InternationalizedValueForKey.m │ │ ├── NSString+PSTokenize.h │ │ ├── NSString+PSTokenize.m │ │ ├── NSTask+FlashlightExtensions.h │ │ ├── NSTask+FlashlightExtensions.m │ │ ├── PSBackgroundProcessor.h │ │ ├── PSBackgroundProcessor.m │ │ ├── PSContactSource.h │ │ ├── PSContactSource.m │ │ ├── PSDateSource.h │ │ ├── PSDateSource.m │ │ ├── PSEndNode.h │ │ ├── PSEndNode.m │ │ ├── PSFileSource.h │ │ ├── PSFileSource.m │ │ ├── PSHelpers.h │ │ ├── PSHelpers.m │ │ ├── PSMerging.h │ │ ├── PSMerging.m │ │ ├── PSNode.h │ │ ├── PSNonterminalNode.h │ │ ├── PSNonterminalNode.m │ │ ├── PSParseCandidate.h │ │ ├── PSParseCandidate.m │ │ ├── PSParsnipSource.h │ │ ├── PSParsnipSource.m │ │ ├── PSPluginDispatcher.h │ │ ├── PSPluginDispatcher.m │ │ ├── PSPluginExampleSource.h │ │ ├── PSPluginExampleSource.m │ │ ├── PSProbabilityCounter.h │ │ ├── PSProbabilityCounter.m │ │ ├── PSSpecialNode.h │ │ ├── PSSpecialNode.m │ │ ├── PSStartNode.h │ │ ├── PSStartNode.m │ │ ├── PSTaggedText+FromNodes.h │ │ ├── PSTaggedText+FromNodes.m │ │ ├── PSTaggedText+ParseExample.h │ │ ├── PSTaggedText+ParseExample.m │ │ ├── PSTaggedText+PreprocessedForLearning.h │ │ ├── PSTaggedText+PreprocessedForLearning.m │ │ ├── PSTaggedText+ToJSON.h │ │ ├── PSTaggedText+ToJSON.m │ │ ├── PSTaggedText+ToNestedDictionaries.h │ │ ├── PSTaggedText+ToNestedDictionaries.m │ │ ├── PSTaggedText.h │ │ ├── PSTaggedText.m │ │ ├── PSTerminalNode.h │ │ ├── PSTerminalNode.m │ │ ├── Parsnip.h │ │ ├── Parsnip.m │ │ ├── TimeParser LICENSE │ │ ├── TimeParser.c │ │ ├── TimeParser.h │ │ ├── invoke_plugin.py │ │ ├── parseIt.ym │ │ ├── run_plugin.py │ │ └── tokeIt.l │ └── FlashlightKitTests │ │ ├── FlashlightKitTests.m │ │ └── Info.plist ├── FlashlightTool │ ├── FlashlightTool.xcodeproj │ │ └── project.pbxproj │ ├── FlashlightTool │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ ├── FlashlightToolAppDelegate.h │ │ ├── FlashlightToolAppDelegate.m │ │ ├── Icon.icns │ │ ├── Info.plist │ │ ├── bundle.icns │ │ ├── main.m │ │ └── say.bundle │ │ │ ├── Icon.png │ │ │ ├── README.markdown │ │ │ ├── Screenshot.png │ │ │ ├── examples.txt │ │ │ ├── info.json │ │ │ └── plugin.py │ └── FlashlightToolTests │ │ ├── FlashlightToolTests.m │ │ └── Info.plist ├── Podfile ├── Podfile.lock ├── Pods │ ├── GRMustache │ │ ├── LICENSE │ │ ├── README.md │ │ └── src │ │ │ └── classes │ │ │ ├── Compiling │ │ │ ├── Expressions │ │ │ │ ├── GRMustacheExpression.m │ │ │ │ ├── GRMustacheExpressionVisitor_private.h │ │ │ │ ├── GRMustacheExpression_private.h │ │ │ │ ├── GRMustacheFilteredExpression.m │ │ │ │ ├── GRMustacheFilteredExpression_private.h │ │ │ │ ├── GRMustacheIdentifierExpression.m │ │ │ │ ├── GRMustacheIdentifierExpression_private.h │ │ │ │ ├── GRMustacheImplicitIteratorExpression.m │ │ │ │ ├── GRMustacheImplicitIteratorExpression_private.h │ │ │ │ ├── GRMustacheScopedExpression.m │ │ │ │ └── GRMustacheScopedExpression_private.h │ │ │ ├── GRMustacheCompiler.m │ │ │ ├── GRMustacheCompiler_private.h │ │ │ └── TemplateAST │ │ │ │ ├── GRMustacheInheritablePartialNode.m │ │ │ │ ├── GRMustacheInheritablePartialNode_private.h │ │ │ │ ├── GRMustacheInheritableSectionNode.m │ │ │ │ ├── GRMustacheInheritableSectionNode_private.h │ │ │ │ ├── GRMustachePartialNode.m │ │ │ │ ├── GRMustachePartialNode_private.h │ │ │ │ ├── GRMustacheSectionTag.m │ │ │ │ ├── GRMustacheSectionTag_private.h │ │ │ │ ├── GRMustacheTag.h │ │ │ │ ├── GRMustacheTag.m │ │ │ │ ├── GRMustacheTag_private.h │ │ │ │ ├── GRMustacheTemplateAST.m │ │ │ │ ├── GRMustacheTemplateASTNode_private.h │ │ │ │ ├── GRMustacheTemplateASTVisitor_private.h │ │ │ │ ├── GRMustacheTemplateAST_private.h │ │ │ │ ├── GRMustacheTextNode.m │ │ │ │ ├── GRMustacheTextNode_private.h │ │ │ │ ├── GRMustacheVariableTag.m │ │ │ │ └── GRMustacheVariableTag_private.h │ │ │ ├── Configuration │ │ │ ├── GRMustacheConfiguration.h │ │ │ ├── GRMustacheConfiguration.m │ │ │ └── GRMustacheConfiguration_private.h │ │ │ ├── GRMustache.h │ │ │ ├── GRMustache.m │ │ │ ├── GRMustacheVersion.h │ │ │ ├── GRMustache_private.h │ │ │ ├── Parsing │ │ │ ├── GRMustacheExpressionParser.m │ │ │ ├── GRMustacheExpressionParser_private.h │ │ │ ├── GRMustacheTemplateParser.m │ │ │ ├── GRMustacheTemplateParser_private.h │ │ │ ├── GRMustacheToken.m │ │ │ └── GRMustacheToken_private.h │ │ │ ├── Rendering │ │ │ ├── GRMustacheContext.h │ │ │ ├── GRMustacheContext.m │ │ │ ├── GRMustacheContext_private.h │ │ │ ├── GRMustacheExpressionInvocation.m │ │ │ ├── GRMustacheExpressionInvocation_private.h │ │ │ ├── GRMustacheFilter.h │ │ │ ├── GRMustacheFilter.m │ │ │ ├── GRMustacheFilter_private.h │ │ │ ├── GRMustacheKeyAccess.m │ │ │ ├── GRMustacheKeyAccess_private.h │ │ │ ├── GRMustacheRendering.h │ │ │ ├── GRMustacheRendering.m │ │ │ ├── GRMustacheRenderingEngine.m │ │ │ ├── GRMustacheRenderingEngine_private.h │ │ │ ├── GRMustacheRendering_private.h │ │ │ ├── GRMustacheSafeKeyAccess.h │ │ │ └── GRMustacheTagDelegate.h │ │ │ ├── Services │ │ │ ├── GRMustacheExpressionGenerator.m │ │ │ ├── GRMustacheExpressionGenerator_private.h │ │ │ ├── GRMustacheTemplateGenerator.m │ │ │ ├── GRMustacheTemplateGenerator_private.h │ │ │ ├── NSFormatter+GRMustache.h │ │ │ ├── NSFormatter+GRMustache.m │ │ │ ├── NSValueTransformer+GRMustache.h │ │ │ ├── NSValueTransformer+GRMustache.m │ │ │ └── StandardLibrary │ │ │ │ ├── GRMustacheEachFilter.m │ │ │ │ ├── GRMustacheEachFilter_private.h │ │ │ │ ├── GRMustacheHTMLLibrary.m │ │ │ │ ├── GRMustacheHTMLLibrary_private.h │ │ │ │ ├── GRMustacheJavascriptLibrary.m │ │ │ │ ├── GRMustacheJavascriptLibrary_private.h │ │ │ │ ├── GRMustacheLocalizer.h │ │ │ │ ├── GRMustacheLocalizer.m │ │ │ │ ├── GRMustacheStandardLibrary.m │ │ │ │ ├── GRMustacheStandardLibrary_private.h │ │ │ │ ├── GRMustacheURLLibrary.m │ │ │ │ └── GRMustacheURLLibrary_private.h │ │ │ ├── Shared │ │ │ ├── GRMustacheAvailabilityMacros.h │ │ │ ├── GRMustacheAvailabilityMacros_private.h │ │ │ ├── GRMustacheBuffer_private.h │ │ │ ├── GRMustacheContentType.h │ │ │ ├── GRMustacheError.h │ │ │ ├── GRMustacheError.m │ │ │ ├── GRMustacheTranslateCharacters.m │ │ │ └── GRMustacheTranslateCharacters_private.h │ │ │ └── Templates │ │ │ ├── GRMustacheTemplate.h │ │ │ ├── GRMustacheTemplate.m │ │ │ ├── GRMustacheTemplateRepository.h │ │ │ ├── GRMustacheTemplateRepository.m │ │ │ ├── GRMustacheTemplateRepository_private.h │ │ │ └── GRMustacheTemplate_private.h │ ├── Headers │ │ └── Public │ │ │ ├── GRMustache │ │ │ ├── GRMustache.h │ │ │ ├── GRMustacheAvailabilityMacros.h │ │ │ ├── GRMustacheConfiguration.h │ │ │ ├── GRMustacheContentType.h │ │ │ ├── GRMustacheContext.h │ │ │ ├── GRMustacheError.h │ │ │ ├── GRMustacheFilter.h │ │ │ ├── GRMustacheLocalizer.h │ │ │ ├── GRMustacheRendering.h │ │ │ ├── GRMustacheSafeKeyAccess.h │ │ │ ├── GRMustacheTag.h │ │ │ ├── GRMustacheTagDelegate.h │ │ │ ├── GRMustacheTemplate.h │ │ │ ├── GRMustacheTemplateRepository.h │ │ │ ├── GRMustacheVersion.h │ │ │ ├── NSFormatter+GRMustache.h │ │ │ └── NSValueTransformer+GRMustache.h │ │ │ ├── JRSwizzle │ │ │ └── JRSwizzle.h │ │ │ └── LetsMove │ │ │ └── PFMoveApplication.h │ ├── JRSwizzle │ │ ├── JRSwizzle.h │ │ ├── JRSwizzle.m │ │ └── README.markdown │ ├── LetsMove │ │ ├── PFMoveApplication.h │ │ ├── PFMoveApplication.m │ │ ├── README.md │ │ ├── cs.lproj │ │ │ └── MoveApplication.strings │ │ ├── da.lproj │ │ │ └── MoveApplication.strings │ │ ├── de.lproj │ │ │ └── MoveApplication.strings │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── MainMenu.xib │ │ │ └── MoveApplication.strings │ │ ├── es.lproj │ │ │ └── MoveApplication.strings │ │ ├── fr.lproj │ │ │ └── MoveApplication.strings │ │ ├── hu.lproj │ │ │ └── MoveApplication.strings │ │ ├── it.lproj │ │ │ └── MoveApplication.strings │ │ ├── ja.lproj │ │ │ └── MoveApplication.strings │ │ ├── ko.lproj │ │ │ └── MoveApplication.strings │ │ ├── mk.lproj │ │ │ └── MoveApplication.strings │ │ ├── nb.lproj │ │ │ └── MoveApplication.strings │ │ ├── nl.lproj │ │ │ └── MoveApplication.strings │ │ ├── pl.lproj │ │ │ └── MoveApplication.strings │ │ ├── pt.lproj │ │ │ └── MoveApplication.strings │ │ ├── pt_BR.lproj │ │ │ └── MoveApplication.strings │ │ ├── ru.lproj │ │ │ └── MoveApplication.strings │ │ ├── sr.lproj │ │ │ └── MoveApplication.strings │ │ ├── sv.lproj │ │ │ └── MoveApplication.strings │ │ ├── tr.lproj │ │ │ └── MoveApplication.strings │ │ └── zh_CN.lproj │ │ │ └── MoveApplication.strings │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── Sparkle │ │ ├── LICENSE │ │ ├── Sparkle.framework.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── Sparkle │ │ └── Sparkle.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── Sparkle │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── SUAppcast.h │ │ │ │ ├── SUAppcastItem.h │ │ │ │ ├── SUStandardVersionComparator.h │ │ │ │ ├── SUUpdater.h │ │ │ │ ├── SUVersionComparisonProtocol.h │ │ │ │ ├── SUVersionDisplayProtocol.h │ │ │ │ └── Sparkle.h │ │ │ ├── Resources │ │ │ │ ├── Autoupdate.app │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ └── Autoupdate │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── AppIcon.icns │ │ │ │ │ │ ├── SUStatus.nib │ │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── el.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── is.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── nb.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── sl.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── th.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── Info.plist │ │ │ │ ├── SUModelTranslation.plist │ │ │ │ ├── SUStatus.nib │ │ │ │ ├── ar.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── cs.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── da.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── de.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── el.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── en.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── es.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fr.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fr_CA.lproj │ │ │ │ ├── is.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── it.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ja.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ko.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── nb.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── nl.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pl.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pt.lproj │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ro.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ru.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sk.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sl.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sv.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── th.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── tr.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── uk.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ └── zh_TW.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ └── Sparkle │ │ │ └── Current │ └── Target Support Files │ │ ├── Pods-Flashlight-GRMustache │ │ ├── Pods-Flashlight-GRMustache-Private.xcconfig │ │ ├── Pods-Flashlight-GRMustache-dummy.m │ │ ├── Pods-Flashlight-GRMustache-prefix.pch │ │ └── Pods-Flashlight-GRMustache.xcconfig │ │ ├── Pods-Flashlight-JRSwizzle │ │ ├── Pods-Flashlight-JRSwizzle-Private.xcconfig │ │ ├── Pods-Flashlight-JRSwizzle-dummy.m │ │ ├── Pods-Flashlight-JRSwizzle-prefix.pch │ │ └── Pods-Flashlight-JRSwizzle.xcconfig │ │ ├── Pods-Flashlight-LetsMove │ │ ├── Pods-Flashlight-LetsMove-Private.xcconfig │ │ ├── Pods-Flashlight-LetsMove-dummy.m │ │ ├── Pods-Flashlight-LetsMove-prefix.pch │ │ └── Pods-Flashlight-LetsMove.xcconfig │ │ ├── Pods-Flashlight-Sparkle │ │ ├── Pods-Flashlight-Sparkle-Private.xcconfig │ │ ├── Pods-Flashlight-Sparkle-dummy.m │ │ ├── Pods-Flashlight-Sparkle-prefix.pch │ │ └── Pods-Flashlight-Sparkle.xcconfig │ │ └── Pods-Flashlight │ │ ├── Pods-Flashlight-acknowledgements.markdown │ │ ├── Pods-Flashlight-acknowledgements.plist │ │ ├── Pods-Flashlight-dummy.m │ │ ├── Pods-Flashlight-environment.h │ │ ├── Pods-Flashlight-resources.sh │ │ ├── Pods-Flashlight.debug.xcconfig │ │ └── Pods-Flashlight.release.xcconfig ├── README.md ├── SIMBL Agent │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── Info.plist │ ├── NSImage+Resize.h │ ├── NSImage+Resize.m │ ├── SIMBLAgent.h │ ├── SIMBLAgent.m │ ├── StatusItemOn.png │ ├── StatusItemOn@2x.png │ ├── UIManager.h │ ├── UIManager.m │ ├── it.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ ├── main.m │ └── ru.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib ├── SIMBL.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── SIMBL Agent.xcscheme │ │ └── SIMBL.xcscheme ├── SpotlightSIMBL │ ├── SpotlightSIMBL.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── SpotlightSIMBL │ │ ├── CTBlockDescription.h │ │ ├── CTBlockDescription.m │ │ ├── CTObjectiveCRuntimeAdditions.h │ │ ├── CTObjectiveCRuntimeAdditions.m │ │ ├── Info.plist │ │ ├── MARTNSObject.h │ │ ├── MARTNSObject.m │ │ ├── MethodOverride.h │ │ ├── MethodOverride.m │ │ ├── NSObject+LogProperties.h │ │ ├── NSObject+LogProperties.m │ │ ├── NSTask+_FlashlightExtensions.h │ │ ├── NSTask+_FlashlightExtensions.m │ │ ├── RSSwizzle.h │ │ ├── RSSwizzle.m │ │ ├── RTIvar.h │ │ ├── RTIvar.m │ │ ├── RTMethod.h │ │ ├── RTMethod.m │ │ ├── RTProperty.h │ │ ├── RTProperty.m │ │ ├── RTProtocol.h │ │ ├── RTProtocol.m │ │ ├── RTUnregisteredClass.h │ │ ├── RTUnregisteredClass.m │ │ ├── SPOpenAPIPreviewViewController.xib │ │ ├── SPOpenAPIResult.h │ │ ├── SPOpenAPIResult.m │ │ ├── SpotlightHeaders │ │ ├── CDStructures.h │ │ ├── NSApplicationDelegate-Protocol.h │ │ ├── NSArray-SPArrayExtensions.h │ │ ├── NSAttributedString-SPAttributedStringExtensions.h │ │ ├── NSCoding-Protocol.h │ │ ├── NSControlTextEditingDelegate-Protocol.h │ │ ├── NSCopying-Protocol.h │ │ ├── NSDictionary-SPDictionaryExtensions.h │ │ ├── NSDraggingSource-Protocol.h │ │ ├── NSImage-SPImageExtensions.h │ │ ├── NSMutableArray-SPArrayExtensions.h │ │ ├── NSMutableAttributedString-SPMutableAttributedStringExtensions.h │ │ ├── NSObject-Protocol.h │ │ ├── NSPasteboardItemDataProvider-Protocol.h │ │ ├── NSPasteboardWriting-Protocol.h │ │ ├── NSSecureCoding-Protocol.h │ │ ├── NSSoundDelegate-Protocol.h │ │ ├── NSSplitViewDelegate-Protocol.h │ │ ├── NSString-MDStringAbbreviations.h │ │ ├── NSString-SPStringExtensions.h │ │ ├── NSString-firstLine.h │ │ ├── NSTableViewDataSource-Protocol.h │ │ ├── NSTableViewDelegate-Protocol.h │ │ ├── NSTextDelegate-Protocol.h │ │ ├── NSTextInputClient_IncrementalSearch-Protocol.h │ │ ├── NSTextViewDelegate-Protocol.h │ │ ├── NSView-Materials.h │ │ ├── NSVisualEffectView-SPExtensions.h │ │ ├── NSWindowDelegate-Protocol.h │ │ ├── NSXPCListenerDelegate-Protocol.h │ │ ├── PRSBaseCardSection-Extensions.h │ │ ├── PRSBaseResult-Protocol.h │ │ ├── PRSCardSection-Extensions.h │ │ ├── PRSDescriptionCardSection-Extensions.h │ │ ├── PRSMapsResult-Protocol.h │ │ ├── PRSMovieListCardSection-Extensions.h │ │ ├── PRSPredictionSupport-Protocol.h │ │ ├── PRSRichTitleCardSection-Extensions.h │ │ ├── PRSRowCardSection-Extensions.h │ │ ├── PRSSimpleResult-Protocol.h │ │ ├── PRSTextColumnsCardSection-Extensions.h │ │ ├── PRSTitleCardSection-Extensions.h │ │ ├── PRSTrackListCardSection-Extensions.h │ │ ├── PRSTwitterUserCardSection-Extensions.h │ │ ├── QLPreviewCustomView-Protocol.h │ │ ├── QLPreviewViewDelegate-Protocol.h │ │ ├── QLSeamlessOpenerDelegate-Protocol.h │ │ ├── SPAgent-Protocol.h │ │ ├── SPAgent.h │ │ ├── SPAggregateQuery.h │ │ ├── SPAggregateResponse.h │ │ ├── SPAlbumResult.h │ │ ├── SPAppDefaults.h │ │ ├── SPAppDelegate.h │ │ ├── SPAppPreviewController.h │ │ ├── SPAppearanceTextField.h │ │ ├── SPApplication.h │ │ ├── SPApplicationQuery.h │ │ ├── SPAssistantPreviewController.h │ │ ├── SPBaseTableRowView.h │ │ ├── SPCATableRowGroupView.h │ │ ├── SPCATableRowView.h │ │ ├── SPCalculationResult.h │ │ ├── SPCalculationResultController.h │ │ ├── SPCalculationSlice.h │ │ ├── SPCalculatorPreviewController.h │ │ ├── SPCalculatorQuery.h │ │ ├── SPCalculatorResult.h │ │ ├── SPCalendarViewController.h │ │ ├── SPCardSectionSliceViewController.h │ │ ├── SPColumnsSliceView.h │ │ ├── SPColumnsSliceViewController.h │ │ ├── SPConversion.h │ │ ├── SPConversionPreviewController.h │ │ ├── SPConversionResult.h │ │ ├── SPCurrencyConversionResult.h │ │ ├── SPDarkView.h │ │ ├── SPDarkenView.h │ │ ├── SPDefaults.h │ │ ├── SPDemo.h │ │ ├── SPDescriptionSliceView.h │ │ ├── SPDescriptionSliceViewController.h │ │ ├── SPDictionaryQuery.h │ │ ├── SPDictionaryResult.h │ │ ├── SPDummyPreviewController.h │ │ ├── SPEncyclopediaPreviewController.h │ │ ├── SPFTEController.h │ │ ├── SPFakeResult.h │ │ ├── SPFolderPreviewController.h │ │ ├── SPFolderQuery.h │ │ ├── SPFusedResult.h │ │ ├── SPGridlinedTableRowView.h │ │ ├── SPGroupHeadingResult.h │ │ ├── SPGroupTableCellView.h │ │ ├── SPImageQuery.h │ │ ├── SPImageResult.h │ │ ├── SPImageView.h │ │ ├── SPIndexingProgressResult.h │ │ ├── SPIndexingProgressTableCellView.h │ │ ├── SPLevelIndicatorView.h │ │ ├── SPLineView.h │ │ ├── SPLinkButton.h │ │ ├── SPLinkTableSliceView.h │ │ ├── SPLinkTableSliceViewController.h │ │ ├── SPListenerDelegate.h │ │ ├── SPLocationPreviewController.h │ │ ├── SPLogisticWithNaiveBayesEngine.h │ │ ├── SPMLManager.h │ │ ├── SPMainViewController-Protocol.h │ │ ├── SPMainViewController.h │ │ ├── SPMapQuery.h │ │ ├── SPMapResult.h │ │ ├── SPMetadataGroupHeadingResult.h │ │ ├── SPMetadataPattern.h │ │ ├── SPMetadataQuery.h │ │ ├── SPMetadataResult.h │ │ ├── SPMoviesSliceView.h │ │ ├── SPMoviesSliceViewController.h │ │ ├── SPParsecGroupHeadingResult.h │ │ ├── SPParsecMapsResult.h │ │ ├── SPParsecPattern.h │ │ ├── SPParsecQuery.h │ │ ├── SPParsecResult.h │ │ ├── SPParsecSimpleResult.h │ │ ├── SPParsecWebQuery.h │ │ ├── SPPattern.h │ │ ├── SPPreviewController.h │ │ ├── SPPreviewHostingView.h │ │ ├── SPPreviewResultController.h │ │ ├── SPPriorityQueue.h │ │ ├── SPQLThumbnailPreviewController.h │ │ ├── SPQuery.h │ │ ├── SPResponse.h │ │ ├── SPResult.h │ │ ├── SPResultTableCellView.h │ │ ├── SPResultTableViewController.h │ │ ├── SPResultViewController.h │ │ ├── SPResultViewControllerDelegate-Protocol.h │ │ ├── SPResultWithSubItemsPreviewControllerViewController.h │ │ ├── SPResultWithSubitemsHelper.h │ │ ├── SPResultWithoutSubitemsHelper.h │ │ ├── SPResultsView.h │ │ ├── SPRichTitleSliceView.h │ │ ├── SPRichTitleSliceViewController.h │ │ ├── SPRowSliceView.h │ │ ├── SPRowSliceViewController.h │ │ ├── SPSearchField.h │ │ ├── SPSearchFieldCell.h │ │ ├── SPSearchFieldEditor.h │ │ ├── SPSearchPanel.h │ │ ├── SPSearchPanelContentView.h │ │ ├── SPShortcutPattern.h │ │ ├── SPShortcuts.h │ │ ├── SPShowAllInFinderResult.h │ │ ├── SPSidewaysMainViewController.h │ │ ├── SPSlice.h │ │ ├── SPSliceViewController.h │ │ ├── SPSpacerSliceView.h │ │ ├── SPSpacerSliceViewController.h │ │ ├── SPSpotQuery.h │ │ ├── SPStatistics.h │ │ ├── SPStatusItemView.h │ │ ├── SPSubItemPreviewImageView.h │ │ ├── SPSubItemPreviewTableCellView.h │ │ ├── SPTableRowView.h │ │ ├── SPTableView.h │ │ ├── SPTextContainer.h │ │ ├── SPTextFieldSliceView.h │ │ ├── SPTextFieldSliceViewController.h │ │ ├── SPTextView.h │ │ ├── SPThreeMoviesSliceView.h │ │ ├── SPTitleSliceView.h │ │ ├── SPTitleSliceViewController.h │ │ ├── SPTrackSliceView.h │ │ ├── SPTrackSliceViewController.h │ │ ├── SPTrailersSliceView.h │ │ ├── SPTrailersSliceViewController.h │ │ ├── SPTwitterUserSliceView.h │ │ ├── SPTwitterUserSliceViewController.h │ │ ├── SPTwoColumnsSliceView.h │ │ ├── SPUnitConversionResult.h │ │ ├── SPWebPreviewCache.h │ │ ├── SPWebPreviewCacheItem.h │ │ ├── SPWebResult.h │ │ ├── SPWebSliceController.h │ │ ├── SPWebViewController.h │ │ ├── SpotlightLearningProtocol-Protocol.h │ │ ├── SpotlightNetHelperProtocol-Protocol.h │ │ └── _MKPlaceViewControllerDelegate-Protocol.h │ │ ├── _FlashlightPluginEngine.h │ │ ├── _FlashlightPluginEngine.m │ │ ├── _Flashlight_Bootstrap.h │ │ └── _Flashlight_Bootstrap.m ├── rez │ └── Info.plist └── src │ ├── NSAlert_SIMBL.h │ ├── NSAlert_SIMBL.m │ ├── SIMBL.h │ ├── SIMBL.m │ ├── SIMBL_Prefix.pch │ └── osax.m ├── GPL_license.txt ├── Image.png ├── LICENSE ├── MIT_license.txt ├── PluginDirectories └── 1 │ ├── .gitignore │ ├── 1688.bundle │ ├── 3.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── 2do.bundle │ ├── 1.version │ ├── Icon.png │ ├── Template.html │ ├── centered_text.py │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── 500px.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── AcFun&Bilibili.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── Brackets.bundle │ ├── 2.version │ ├── Screenshot.png │ ├── applescript.py │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── CanIUse.bundle │ ├── 2.version │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── CopyPath.bundle │ ├── 2.version │ ├── Icon.png │ ├── Info.plist │ ├── applescript.py │ ├── examples.txt │ ├── examples_de.txt │ ├── info.json │ ├── plugin.py │ └── strings_de.json │ ├── EmptyTrash.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── FontAwesome.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── Instranslator.bundle │ ├── 2.version │ ├── Screenshot.png │ ├── centered_text.py │ ├── copy_to_clipboard.py │ ├── dark_mode.py │ ├── examples.txt │ ├── icon.png │ ├── info.json │ ├── plugin.py │ └── translate.html │ ├── NightFoxAmbient.bundle │ ├── 1.version │ ├── Icon.png │ ├── Screenshot.png │ ├── applescript.py │ ├── examples.txt │ ├── help.png │ ├── info.json │ ├── license │ ├── oauthlib │ │ ├── __init__.py │ │ ├── common.py │ │ ├── oauth1 │ │ │ ├── __init__.py │ │ │ └── rfc5849 │ │ │ │ ├── __init__.py │ │ │ │ ├── endpoints │ │ │ │ ├── __init__.py │ │ │ │ ├── access_token.py │ │ │ │ ├── authorization.py │ │ │ │ ├── base.py │ │ │ │ ├── pre_configured.py │ │ │ │ ├── request_token.py │ │ │ │ ├── resource.py │ │ │ │ └── signature_only.py │ │ │ │ ├── errors.py │ │ │ │ ├── parameters.py │ │ │ │ ├── request_validator.py │ │ │ │ ├── signature.py │ │ │ │ └── utils.py │ │ ├── oauth2 │ │ │ ├── __init__.py │ │ │ └── rfc6749 │ │ │ │ ├── __init__.py │ │ │ │ ├── clients │ │ │ │ ├── __init__.py │ │ │ │ ├── backend_application.py │ │ │ │ ├── base.py │ │ │ │ ├── legacy_application.py │ │ │ │ ├── mobile_application.py │ │ │ │ ├── service_application.py │ │ │ │ └── web_application.py │ │ │ │ ├── endpoints │ │ │ │ ├── __init__.py │ │ │ │ ├── authorization.py │ │ │ │ ├── base.py │ │ │ │ ├── pre_configured.py │ │ │ │ ├── resource.py │ │ │ │ ├── revocation.py │ │ │ │ └── token.py │ │ │ │ ├── errors.py │ │ │ │ ├── grant_types │ │ │ │ ├── __init__.py │ │ │ │ ├── authorization_code.py │ │ │ │ ├── base.py │ │ │ │ ├── client_credentials.py │ │ │ │ ├── implicit.py │ │ │ │ ├── refresh_token.py │ │ │ │ └── resource_owner_password_credentials.py │ │ │ │ ├── parameters.py │ │ │ │ ├── request_validator.py │ │ │ │ ├── tokens.py │ │ │ │ └── utils.py │ │ ├── signals.py │ │ └── uri_validate.py │ ├── options.json │ ├── plugin.py │ ├── requests │ │ ├── __init__.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── cacert.pem │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages │ │ │ ├── README.rst │ │ │ ├── __init__.py │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardetect.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── codingstatemachine.py │ │ │ │ ├── compat.py │ │ │ │ ├── constants.py │ │ │ │ ├── cp949prober.py │ │ │ │ ├── escprober.py │ │ │ │ ├── escsm.py │ │ │ │ ├── eucjpprober.py │ │ │ │ ├── euckrfreq.py │ │ │ │ ├── euckrprober.py │ │ │ │ ├── euctwfreq.py │ │ │ │ ├── euctwprober.py │ │ │ │ ├── gb2312freq.py │ │ │ │ ├── gb2312prober.py │ │ │ │ ├── hebrewprober.py │ │ │ │ ├── jisfreq.py │ │ │ │ ├── jpcntx.py │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ ├── langgreekmodel.py │ │ │ │ ├── langhebrewmodel.py │ │ │ │ ├── langhungarianmodel.py │ │ │ │ ├── langthaimodel.py │ │ │ │ ├── latin1prober.py │ │ │ │ ├── mbcharsetprober.py │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ ├── mbcssm.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ └── utf8prober.py │ │ │ └── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── ntlmpool.py │ │ │ │ └── pyopenssl.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── ordered_dict.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── timeout.py │ │ │ │ └── url.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ └── requests_oauthlib │ │ ├── __init__.py │ │ ├── compliance_fixes │ │ ├── __init__.py │ │ ├── douban.py │ │ ├── facebook.py │ │ ├── linkedin.py │ │ └── weibo.py │ │ ├── oauth1_auth.py │ │ ├── oauth1_session.py │ │ ├── oauth2_auth.py │ │ └── oauth2_session.py │ ├── NoLongerWorking │ └── Wunderlist.bundle │ │ ├── 3.version │ │ ├── examples.txt │ │ ├── info.json │ │ ├── options.json │ │ ├── plugin.py │ │ └── preferences.json │ ├── Xueqiu.bundle │ ├── 1.version │ ├── Icon.png │ ├── content.html │ ├── error.html │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── airdrop.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ ├── plugin.py │ └── strings_ja.json │ ├── alc.bundle │ ├── 2.version │ ├── Icon.png │ ├── README.markdown │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── alibaba.bundle │ ├── 2.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── aliexpress.bundle │ ├── 2.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── allocine.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── examples_fr.txt │ ├── info.json │ ├── plugin.py │ └── strings_fr.json │ ├── amazon.bundle │ ├── 2.version │ ├── examples.txt │ ├── info.json │ ├── plugin.py │ └── strings_de.json │ ├── angulardocs.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── appanniesearch.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── asana.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ ├── options.json │ ├── plugin.py │ └── preferences.json │ ├── asciiWWDC.bundle │ ├── .gitmodules │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── atom.bundle │ ├── 1.version │ ├── applescript.py │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── baidu.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── bing.bundle │ ├── 2.version │ ├── examples.txt │ ├── examples_de.txt │ ├── info.json │ ├── plugin.py │ └── strings_de.json │ ├── bitcoin.bundle │ ├── 3.version │ ├── Icon.png │ ├── examples.txt │ ├── examples_fr.txt │ ├── glyph.png │ ├── info.json │ ├── jquery.min.js │ ├── options.json │ ├── plugin.py │ ├── preferences.json │ └── temp.html │ ├── brew-formulas.bundle │ ├── 1.version │ ├── Icon.png │ ├── README.markdown │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── bye404.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── examples_zh.txt │ ├── info.json │ └── plugin.py │ ├── calculator.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── calendar.bundle │ ├── 5.version │ ├── EventKitUtility │ ├── Icon.png │ ├── Screenshot.png │ ├── dark_mode.py │ ├── eventkitutility.py │ ├── examples.txt │ ├── info.json │ ├── jinja2 │ │ ├── __init__.py │ │ ├── _compat.py │ │ ├── _stringdefs.py │ │ ├── bccache.py │ │ ├── compiler.py │ │ ├── constants.py │ │ ├── debug.py │ │ ├── defaults.py │ │ ├── environment.py │ │ ├── exceptions.py │ │ ├── ext.py │ │ ├── filters.py │ │ ├── lexer.py │ │ ├── loaders.py │ │ ├── meta.py │ │ ├── nodes.py │ │ ├── optimizer.py │ │ ├── parser.py │ │ ├── runtime.py │ │ ├── sandbox.py │ │ ├── tests.py │ │ ├── testsuite │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── bytecode_cache.py │ │ │ ├── core_tags.py │ │ │ ├── debug.py │ │ │ ├── doctests.py │ │ │ ├── ext.py │ │ │ ├── filters.py │ │ │ ├── imports.py │ │ │ ├── inheritance.py │ │ │ ├── lexnparse.py │ │ │ ├── loader.py │ │ │ ├── regression.py │ │ │ ├── res │ │ │ │ ├── __init__.py │ │ │ │ └── templates │ │ │ │ │ ├── broken.html │ │ │ │ │ ├── foo │ │ │ │ │ └── test.html │ │ │ │ │ ├── syntaxerror.html │ │ │ │ │ └── test.html │ │ │ ├── security.py │ │ │ ├── tests.py │ │ │ └── utils.py │ │ ├── utils.py │ │ └── visitor.py │ ├── markupsafe │ │ ├── __init__.py │ │ ├── _compat.py │ │ ├── _constants.py │ │ ├── _native.py │ │ ├── _speedups.c │ │ └── tests.py │ ├── plugin.py │ ├── post_notification.py │ └── template.html │ ├── call.bundle │ ├── 5.version │ ├── Icon.png │ ├── Screen Shot 2015-03-28 at 6.10.59 PM.png │ ├── applescript.py │ ├── centered_text.py │ ├── examples.txt │ ├── icomoon.ttf │ ├── info.json │ └── plugin.py │ ├── ccgenerator.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── choc.bundle │ ├── 3.version │ ├── Screenshot.png │ ├── applescript.py │ ├── examples.txt │ ├── folder.png │ ├── icon.png │ ├── info.json │ ├── options.json │ ├── plugin.py │ └── preferences.json │ ├── click-menu.bundle │ ├── 2.version │ ├── Icon.png │ ├── Screenshot.png │ ├── Settings.png │ ├── applescript.py │ ├── centered_text.py │ ├── dark_mode.py │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── clojuredocs.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── cloudapp.bundle │ ├── 2.version │ ├── Icon.png │ ├── Screenshot.png │ ├── applescript.py │ ├── centered_text.py │ ├── examples.txt │ ├── icomoon.ttf │ ├── info.json │ └── plugin.py │ ├── cocoapods.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── codic.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── colisimo.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── examples_de.txt │ ├── examples_es.txt │ ├── examples_fr.txt │ ├── examples_it.txt │ ├── examples_nl.txt │ ├── info.json │ ├── plugin.py │ ├── strings_de.json │ ├── strings_es.json │ ├── strings_fr.json │ ├── strings_it.json │ └── strings_nl.json │ ├── compute_version.py │ ├── copycolor.bundle │ ├── 5.version │ ├── Icon.png │ ├── applescript.py │ ├── examples.txt │ ├── examples_de.txt │ ├── info.json │ ├── pick_color.py │ └── plugin.py │ ├── cowsay.bundle │ ├── 1.version │ ├── cowsay.py │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── crunchbase.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── custom-search.bundle │ ├── 3.version │ ├── Screenshot.png │ ├── examples.txt │ ├── icon-dark.png │ ├── icon.png │ ├── info.json │ ├── options.json │ ├── plugin.py │ └── preferences.json │ ├── daily.zhihu.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ ├── plugin.py │ └── temp.html │ ├── dash.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── devdocs.bundle │ ├── 3.version │ ├── Icon.png │ ├── examples.txt │ ├── examples_fr.txt │ ├── info.json │ └── plugin.py │ ├── deviantart.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── dhltracking.bundle │ ├── 3.version │ ├── Icon.png │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── dictcc.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ ├── plugin.py │ └── strings_de.json │ ├── dig.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── diki.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── discogs.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── dizionario.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── doc-webdev.bundle │ ├── 2.version │ ├── examples.txt │ ├── icon.png │ ├── info.json │ └── plugin.py │ ├── dockerImageSearch.bundle │ ├── 2.version │ ├── examples.txt │ ├── icon.png │ ├── info.json │ └── plugin.py │ ├── douban.bundle │ ├── 2.version │ ├── Icon.png │ ├── crel.js │ ├── douban.html │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── duckduckgo.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── ebay.bundle │ ├── 2.version │ ├── examples.txt │ ├── info.json │ ├── plugin.py │ └── strings_de.json │ ├── eject.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── emoji.bundle │ ├── 2.version │ ├── Icon.png │ ├── README.md │ ├── Screenshot.png │ ├── emoji.json │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── espn.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── evernote-search.bundle │ ├── 1.version │ ├── Icon.png │ ├── README.markdown │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── excuse.bundle │ ├── 1.version │ ├── examples.txt │ ├── excuse.html │ ├── info.json │ └── plugin.py │ ├── fasttweet.bundle │ ├── 3.version │ ├── Icon.png │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── favorites.bundle │ ├── 2.version │ ├── Icon.png │ ├── centered_text.py │ ├── examples.txt │ ├── info.json │ ├── options.json │ ├── plugin.py │ ├── preferences.json │ └── strings_de.json │ ├── fedex.bundle │ ├── 1.version │ ├── Icon.png │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── flashlight.bundle │ ├── 2.version │ ├── Icon.png │ ├── README.markdown │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── flickr.bundle │ ├── 2.version │ ├── examples.txt │ ├── info.json │ ├── plugin.py │ └── strings_de.json │ ├── fntoggle.bundle │ ├── 1.version │ ├── examples.txt │ ├── fntoggle.applescript │ ├── info.json │ └── plugin.py │ ├── fpm.bundle │ ├── 3.version │ ├── Icon.png │ ├── README.markdown │ ├── Screenshot.png │ ├── assets │ │ └── Icon.ai │ ├── examples.txt │ ├── info.json │ ├── js.html │ ├── mark-github.svg │ ├── plugin.py │ ├── scripts │ │ ├── app.js │ │ └── jquery-2.1.3.min.js │ └── shell │ │ ├── install.sh │ │ └── remove.sh │ ├── gasprice.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── examples_de.txt │ ├── info.json │ ├── mehrtanken.html │ ├── plugin.py │ └── strings_de.json │ ├── generate_index.py │ ├── genius.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── examples_de.txt │ ├── info.json │ └── plugin.py │ ├── gif.bundle │ ├── 1.version │ ├── examples.txt │ ├── examples_de.txt │ ├── gifbot.html │ ├── info.json │ ├── plugin.py │ └── strings_de.json │ ├── giphy.bundle │ ├── 1.version │ ├── Icon.png │ ├── Screenshot.png │ ├── copy_to_clipboard.py │ ├── examples.txt │ ├── info.json │ ├── jquery.min.js │ ├── logo.gif │ ├── plugin.py │ └── post_notification.py │ ├── github-issue.bundle │ ├── 1.version │ ├── Icon.png │ ├── README.md │ ├── Screenshot.jpg │ ├── create.html │ ├── examples.txt │ ├── info.json │ ├── options.json │ ├── plugin.py │ └── preferences.json │ ├── github.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── google-trends.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── googledrive.bundle │ ├── 2.version │ ├── Icon.png │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── googleimages.bundle │ ├── 2.version │ ├── examples.txt │ ├── examples_de.txt │ ├── info.json │ ├── plugin.py │ └── strings_de.json │ ├── googlemaps.bundle │ ├── 2.version │ ├── Icon.png │ ├── Screenshot.png │ ├── examples.txt │ ├── examples_de.txt │ ├── info.json │ ├── plugin.py │ └── strings_de.json │ ├── googlescholar.bundle │ ├── 2.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── googlesearch.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── examples_de.txt │ ├── info.json │ ├── plugin.py │ └── strings_de.json │ ├── googletranslate.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── hackernews.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── haomatong.bundle │ ├── 1.version │ ├── Icon.png │ ├── crel.js │ ├── examples.txt │ ├── haomatong.html │ ├── info.json │ └── plugin.py │ ├── hexCalc.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── hiddenfiles.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── hide-desktop-icons.bundle │ ├── 1.version │ ├── Icon.png │ ├── centered_text.py │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── hipchat.bundle │ ├── 1.version │ ├── Icon.png │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ ├── options.json │ ├── plugin.py │ ├── preferences.json │ └── view.html │ ├── hoogle.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── hummingbird.bundle │ ├── 3.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ ├── options.json │ ├── plugin.py │ └── preferences.json │ ├── idealo.bundle │ ├── 1.version │ ├── Icon.png │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── im-feeling-lucky.bundle │ ├── 2.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── imdb.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── imessage.bundle │ ├── 2.version │ ├── Icon.png │ ├── Screenshot.png │ ├── applescript.py │ ├── contacts.py │ ├── examples.txt │ ├── examples_de.txt │ ├── html.html │ ├── info.json │ ├── paper-clip.png │ ├── plugin.py │ └── send_message.py │ ├── index.json │ ├── ipinfo.bundle │ ├── 1.version │ ├── crel.js │ ├── examples.txt │ ├── info.json │ ├── ipinfo.html │ └── plugin.py │ ├── ipuseragent.bundle │ ├── 2.version │ ├── examples.txt │ ├── examples_de.txt │ ├── info.json │ ├── ipuseragent.html │ └── plugin.py │ ├── isitup.bundle │ ├── 1.version │ ├── Icon.png │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ ├── plugin.py │ └── wrapper.html │ ├── iterm.bundle │ ├── 1.version │ ├── README.md │ ├── Screeshot.png │ ├── applescript.py │ ├── examples.txt │ ├── icon.png │ ├── info.json │ ├── options.json │ ├── plugin.py │ └── preferences.json │ ├── jd.bundle │ ├── 2.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── jira.bundle │ ├── 2.version │ ├── Icon.png │ ├── README.markdown │ ├── Screenshot.png │ ├── examples.txt │ ├── examples_de.txt │ ├── info.json │ ├── options.json │ ├── plugin.py │ ├── preferences.json │ └── strings_de.json │ ├── jisho.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── js.bundle │ ├── 2.version │ ├── Icon.png │ ├── README.markdown │ ├── Screenshot.png │ ├── examples.txt │ ├── highlight │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README.ru.md │ │ ├── highlight.pack.js │ │ └── styles │ │ │ ├── arta.css │ │ │ ├── ascetic.css │ │ │ ├── atelier-dune.dark.css │ │ │ ├── atelier-dune.light.css │ │ │ ├── atelier-forest.dark.css │ │ │ ├── atelier-forest.light.css │ │ │ ├── atelier-heath.dark.css │ │ │ ├── atelier-heath.light.css │ │ │ ├── atelier-lakeside.dark.css │ │ │ ├── atelier-lakeside.light.css │ │ │ ├── atelier-seaside.dark.css │ │ │ ├── atelier-seaside.light.css │ │ │ ├── brown_paper.css │ │ │ ├── brown_papersq.png │ │ │ ├── codepen-embed.css │ │ │ ├── color-brewer.css │ │ │ ├── dark.css │ │ │ ├── default.css │ │ │ ├── docco.css │ │ │ ├── far.css │ │ │ ├── foundation.css │ │ │ ├── github.css │ │ │ ├── googlecode.css │ │ │ ├── hybrid.css │ │ │ ├── idea.css │ │ │ ├── ir_black.css │ │ │ ├── kimbie.dark.css │ │ │ ├── kimbie.light.css │ │ │ ├── magula.css │ │ │ ├── mono-blue.css │ │ │ ├── monokai.css │ │ │ ├── monokai_sublime.css │ │ │ ├── obsidian.css │ │ │ ├── paraiso.dark.css │ │ │ ├── paraiso.light.css │ │ │ ├── pojoaque.css │ │ │ ├── pojoaque.jpg │ │ │ ├── railscasts.css │ │ │ ├── rainbow.css │ │ │ ├── school_book.css │ │ │ ├── school_book.png │ │ │ ├── solarized_dark.css │ │ │ ├── solarized_light.css │ │ │ ├── sunburst.css │ │ │ ├── tomorrow-night-blue.css │ │ │ ├── tomorrow-night-bright.css │ │ │ ├── tomorrow-night-eighties.css │ │ │ ├── tomorrow-night.css │ │ │ ├── tomorrow.css │ │ │ ├── vs.css │ │ │ ├── xcode.css │ │ │ └── zenburn.css │ ├── info.json │ ├── js.html │ ├── options.json │ ├── pasteboard.py │ ├── plugin.py │ ├── post_notification.py │ └── preferences.json │ ├── kill.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── kill9.bundle │ ├── 2.version │ ├── examples.txt │ ├── icon.png │ ├── info.json │ └── plugin.py │ ├── kuaidi.bundle │ ├── 1.version │ ├── Icon.png │ ├── crel.js │ ├── examples.txt │ ├── info.json │ ├── kuaidi.html │ └── plugin.py │ ├── largetext.bundle │ ├── 2.version │ ├── Icon.png │ ├── Screenshot.png │ ├── centered_text.py │ ├── examples.txt │ ├── examples_de.txt │ ├── info.json │ ├── large_text.py │ ├── plugin.py │ └── strings_de.json │ ├── lastfm.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── lenny.bundle │ ├── 4.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ ├── lenny.html │ └── plugin.py │ ├── leo.bundle │ ├── 3.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ ├── options.json │ ├── options_de.json │ ├── plugin.py │ ├── preferences.json │ └── strings_de.json │ ├── lipsum.bundle │ ├── 2.version │ ├── Icon.png │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ ├── loremipsum │ │ ├── __init__.py │ │ ├── default │ │ │ ├── dictionary.txt │ │ │ └── sample.txt │ │ └── generator.py │ └── plugin.py │ ├── macupdate.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── man.bundle │ ├── 1.version │ ├── examples.txt │ ├── examples_fr.txt │ ├── info.json │ └── plugin.py │ ├── mate.bundle │ ├── 1.version │ ├── applescript.py │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── mdn.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── month.bundle │ ├── 1.version │ ├── Icon.png │ ├── Screenshot.png │ ├── calendar.html │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── move-file.bundle │ ├── 2.version │ ├── Icon.png │ ├── Images │ │ ├── File.png │ │ ├── Folder.png │ │ └── Trash.png │ ├── Screenshot.png │ ├── centered_text.py │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── namuwiki.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── netflix.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── ninetan.bundle │ ├── 2.version │ ├── examples.txt │ ├── examples_ja.txt │ ├── info.json │ ├── options.json │ ├── plugin.py │ └── strings_ja.json │ ├── notes.bundle │ ├── 1.version │ ├── Icon.png │ ├── Screenshot.png │ ├── applescript.py │ ├── background.png │ ├── counterexamples.txt │ ├── examples.txt │ ├── info.json │ ├── pasteboard.py │ ├── plugin.py │ └── post_notification.py │ ├── npm.bundle │ ├── 2.version │ ├── Icon.png │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── nyaa.bundle │ ├── 3.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ ├── options.json │ ├── plugin.py │ └── preferences.json │ ├── omnifocus.bundle │ ├── 1.version │ ├── examples.txt │ ├── icon.png │ ├── info.json │ └── plugin.py │ ├── open-url.bundle │ ├── 3.version │ ├── Icon.png │ ├── Screenshot.png │ ├── centered_text.py │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── php.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── examples_fr.txt │ ├── info.json │ ├── jquery-2.1.1.min.js │ ├── php.html │ └── plugin.py │ ├── piglatin.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── pypi.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ ├── options.json │ └── plugin.py │ ├── qiita.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── qr-googlechart.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── quicksearch.bundle │ ├── 2.version │ ├── Icon.png │ ├── bing.svg │ ├── examples.txt │ ├── info.json │ ├── plugin.py │ ├── search.html │ └── static_result.json │ ├── randomimage.bundle │ ├── 2.version │ ├── examples.txt │ ├── examples_de.txt │ ├── imagebot.html │ ├── info.json │ ├── plugin.py │ └── strings_de.json │ ├── reaction-gifs.bundle │ ├── 2.version │ ├── Icon.png │ ├── README.md │ ├── Screenshot.png │ ├── examples.txt │ ├── index.html │ ├── info.json │ └── plugin.py │ ├── reddit.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── remind-me.bundle │ ├── 5.version │ ├── EventKitUtility │ ├── Icon.png │ ├── applescript.py │ ├── eventkitutility.py │ ├── examples.txt │ ├── examples_de.txt │ ├── info.json │ ├── plugin.py │ └── post_notification.py │ ├── reveal-in-finder.bundle │ ├── 1.version │ ├── Icon.png │ ├── Screenshot.png │ ├── dark_mode.py │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── romsearch.bundle │ ├── 2.version │ ├── Icon.png │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── royaltsx.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── rubygems.bundle │ ├── 1.version │ ├── Icon.png │ ├── README.markdown │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── say.bundle │ ├── 1.version │ ├── examples.txt │ ├── examples_de.txt │ ├── examples_fr.txt │ ├── info.json │ └── plugin.py │ ├── send_email.bundle │ ├── 4.version │ ├── Icon.png │ ├── applescript.py │ ├── contacts.py │ ├── examples.txt │ ├── gmail.py │ ├── html.html │ ├── info.json │ ├── options.json │ ├── paper-clip.png │ ├── plugin.py │ ├── preferences.json │ └── send_mail.py │ ├── shorten.bundle │ ├── 1.version │ ├── examples.txt │ ├── examples_de.txt │ ├── icon.png │ ├── info.json │ └── plugin.py │ ├── showinfinder.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── examples_de.txt │ ├── info.json │ ├── plugin.py │ ├── strings_de.json │ └── strings_en.json │ ├── shutdown.bundle │ ├── 4.version │ ├── Icon.png │ ├── counterexamples.txt │ ├── examples.txt │ ├── examples_de.txt │ ├── examples_fr.txt │ ├── info.json │ ├── plugin.py │ └── strings_de.json │ ├── slack.bundle │ ├── 4.version │ ├── examples.txt │ ├── info.json │ ├── options.json │ ├── plugin.py │ ├── preferences.json │ └── slack.html │ ├── speller.bundle │ ├── 4.version │ ├── Icon.png │ ├── Screenshot.png │ ├── dark_mode.py │ ├── examples.txt │ ├── examples_nl.txt │ ├── info.json │ ├── plugin.py │ ├── spellchecker.py │ ├── template_base.html │ └── template_listitem.html │ ├── spotify+.bundle │ ├── 1.version │ ├── examples.txt │ ├── icon.png │ ├── info.json │ ├── plugin.py │ └── views │ │ ├── Q.js │ │ ├── index.html │ │ ├── jquery.js │ │ └── spotify.js │ ├── spotify.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── stackoverflow.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── stocks.bundle │ ├── 1.version │ ├── examples.txt │ ├── examples_de.txt │ ├── examples_fr.txt │ ├── info.json │ └── plugin.py │ ├── sublime.bundle │ ├── 3.version │ ├── Icon.png │ ├── Screenshot.png │ ├── applescript.py │ ├── examples.txt │ ├── folder.png │ ├── info.json │ ├── options.json │ ├── plugin.py │ └── preferences.json │ ├── subreddit.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── taobao.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── teamviewer.bundle │ ├── 1.version │ ├── Icon.png │ ├── README.md │ ├── Screenshot.jpg │ ├── examples.txt │ ├── info.json │ ├── map.jpg │ └── plugin.py │ ├── terminal.bundle │ ├── 2.version │ ├── applescript.py │ ├── examples.txt │ ├── examples_fr.txt │ ├── info.json │ ├── options.json │ ├── plugin.py │ └── preferences.json │ ├── thepiratebay.bundle │ ├── 1.version │ ├── examples.txt │ ├── icon.png │ ├── info.json │ └── plugin.py │ ├── thing.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── ticktick.bundle │ ├── 1.version │ ├── examples.txt │ ├── icon.png │ ├── info.json │ ├── options.json │ ├── plugin.py │ └── preferences.json │ ├── timer.bundle │ ├── 1.version │ ├── Icon-dark.png │ ├── Icon.png │ ├── beep.wav │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── timestamp.bundle │ ├── 1.version │ ├── examples.txt │ ├── examples_fr.txt │ ├── info.json │ ├── plugin.py │ └── post_notification.py │ ├── timezone.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── examples_de.txt │ ├── examples_fr.txt │ ├── info.json │ ├── plugin.py │ ├── strings_de.json │ ├── timezone.html │ ├── timezone_de.html │ └── timezone_fr.html │ ├── todoist.bundle │ ├── 2.version │ ├── examples.txt │ ├── info.json │ ├── options.json │ ├── plugin.py │ └── preferences.json │ ├── torrent.bundle │ ├── 2.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── torrentz.bundle │ ├── 3.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ ├── plugin.py │ └── template.html │ ├── trakt.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── twitter.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── tyda.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── tyme.bundle │ ├── 3.version │ ├── Icon.png │ ├── Template.html │ ├── applescript.py │ ├── centered_text.py │ ├── examples.txt │ ├── info.json │ ├── plugin.py │ └── tyme.py │ ├── unicode.bundle │ ├── 4.version │ ├── Icon.png │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ ├── plugin.py │ └── unicode.html │ ├── unicode2chinese.bundle │ ├── 1.version │ ├── Icon.png │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── upload.py │ ├── upload_all.py │ ├── urbandictionary.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── uuid.bundle │ ├── 1.version │ ├── README.md │ ├── examples.txt │ ├── icon.png │ ├── info.json │ └── plugin.py │ ├── v2ex.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ ├── jquery.min.js │ ├── moment.js │ ├── plugin.py │ └── temp.html │ ├── vertaal.bundle │ ├── 3.version │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── weather.bundle │ ├── 8.version │ ├── Icon.png │ ├── README.md │ ├── Screenshot.png │ ├── crel.js │ ├── examples.txt │ ├── examples_de.txt │ ├── examples_fr.txt │ ├── examples_nl.txt │ ├── info.json │ ├── info_nl.json │ ├── options.json │ ├── plugin.py │ ├── preferences.json │ ├── skycons.js │ ├── strings_de.json │ ├── strings_fr.json │ ├── strings_nl.json │ ├── weather.html │ ├── weather_de.html │ └── weather_nl.html │ ├── weblio.bundle │ ├── 1.version │ ├── Icon.png │ ├── README.markdown │ ├── Screenshot.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── whenis.bundle │ ├── 2.version │ ├── Icon.png │ ├── applescript.py │ ├── centered_text.py │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── whoami.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── wikipedia.bundle │ ├── 3.version │ ├── Icon.png │ ├── examples.txt │ ├── examples_de.txt │ ├── examples_fr.txt │ ├── examples_it.txt │ ├── examples_ja.txt │ ├── examples_nl.txt │ ├── examples_pl.txt │ ├── info.json │ ├── plugin.py │ ├── strings_de.json │ ├── strings_ja.json │ ├── strings_nl.json │ └── strings_pl.json │ ├── wiktionary.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── examples_de.txt │ ├── info.json │ ├── plugin.py │ └── strings_de.json │ ├── wireless-toggles.bundle │ ├── 3.version │ ├── Icon.png │ ├── Screenshot.png │ ├── blueutil │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── wordpress.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── wordreference.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── workingon.bundle │ ├── 1.version │ ├── examples.txt │ ├── icon.png │ ├── info.json │ ├── options.json │ ├── plugin.py │ ├── post_notification.py │ └── preferences.json │ ├── xcode-shortcuts.bundle │ ├── 2.version │ ├── Icon.png │ ├── centered_text.py │ ├── counterexamples.txt │ ├── examples.txt │ ├── info.json │ ├── plugin.py │ └── post_notification.py │ ├── yahoo.bundle │ ├── 2.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── yandex.bundle │ ├── 1.version │ ├── examples.txt │ ├── icon.png │ ├── info.json │ └── plugin.py │ ├── yelp.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── yesno.bundle │ ├── 1.version │ ├── animate.css │ ├── examples.txt │ ├── examples_de.txt │ ├── info.json │ ├── plugin.py │ ├── strings_de.json │ ├── yesno.html │ └── yesno_de.html │ ├── yhd.bundle │ ├── 2.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── yixun.bundle │ ├── 2.version │ ├── examples.txt │ ├── info.json │ └── plugin.py │ ├── youdaodic.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ ├── plugin.py │ └── youdao.html │ ├── youtube.bundle │ ├── 1.version │ ├── examples.txt │ ├── info.json │ ├── plugin.py │ └── strings_de.json │ ├── zalando.bundle │ ├── 2.version │ ├── Icon.png │ ├── Screenshot.png │ ├── category-mapping.json │ ├── examples.txt │ ├── info.json │ ├── options.json │ ├── plugin.py │ └── preferences.json │ ├── zeal.bundle │ ├── 1.version │ ├── Icon.png │ ├── examples.txt │ ├── info.json │ └── plugin.py │ └── zhihuDaily.bundle │ ├── 1.version │ ├── Icon.png │ ├── error.html │ ├── examples.txt │ ├── info.json │ └── plugin.py ├── README.md ├── UsefulModulesForPlugins ├── applescript.py ├── centered_text.py ├── contacts.py ├── dark_mode.py ├── i18n.py ├── pasteboard.py ├── post_notification.py ├── send_mail.py └── send_message.py ├── Utilities └── EventKitUtility │ ├── EventKitUtility.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── EventKitUtility │ ├── EventKitUtility.h │ ├── EventKitUtility.m │ └── main.m ├── export.py ├── flashlightplugins ├── app.yaml ├── applogging.py ├── background_work.py ├── base.html ├── browse.html ├── bs4 │ ├── __init__.py │ ├── builder │ │ ├── __init__.py │ │ ├── _html5lib.py │ │ ├── _htmlparser.py │ │ └── _lxml.py │ ├── dammit.py │ ├── element.py │ ├── testing.py │ └── tests │ │ ├── __init__.py │ │ ├── test_builder_registry.py │ │ ├── test_docs.py │ │ ├── test_html5lib.py │ │ ├── test_htmlparser.py │ │ ├── test_lxml.py │ │ ├── test_soup.py │ │ └── test_tree.py ├── cleanup.py ├── cloudstorage │ ├── __init__.py │ ├── api_utils.py │ ├── cloudstorage_api.py │ ├── common.py │ ├── errors.py │ ├── rest_api.py │ ├── storage_api.py │ └── test_utils.py ├── cron.yaml ├── directory.html ├── directory.py ├── file_storage.py ├── google_measurement_protocol │ ├── __init__.py │ └── tests.py ├── index.html ├── index.yaml ├── index2.html ├── main.py ├── message.html ├── model.py ├── plugin_page.html ├── query_updates.py ├── requests │ ├── __init__.py │ ├── adapters.py │ ├── api.py │ ├── auth.py │ ├── cacert.pem │ ├── certs.py │ ├── compat.py │ ├── cookies.py │ ├── exceptions.py │ ├── hooks.py │ ├── models.py │ ├── packages │ │ ├── __init__.py │ │ ├── charade │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── codingstatemachine.py │ │ │ ├── compat.py │ │ │ ├── constants.py │ │ │ ├── cp949prober.py │ │ │ ├── escprober.py │ │ │ ├── escsm.py │ │ │ ├── eucjpprober.py │ │ │ ├── euckrfreq.py │ │ │ ├── euckrprober.py │ │ │ ├── euctwfreq.py │ │ │ ├── euctwprober.py │ │ │ ├── gb2312freq.py │ │ │ ├── gb2312prober.py │ │ │ ├── hebrewprober.py │ │ │ ├── jisfreq.py │ │ │ ├── jpcntx.py │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langcyrillicmodel.py │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── latin1prober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ └── utf8prober.py │ │ └── urllib3 │ │ │ ├── __init__.py │ │ │ ├── _collections.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── ntlmpool.py │ │ │ └── pyopenssl.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── ordered_dict.py │ │ │ ├── six.py │ │ │ └── ssl_match_hostname │ │ │ │ ├── __init__.py │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util.py │ ├── sessions.py │ ├── status_codes.py │ ├── structures.py │ └── utils.py ├── search.py ├── static │ ├── animation │ │ ├── animation.js │ │ └── resources │ │ │ ├── CalendarEvents.png │ │ │ ├── Call.png │ │ │ ├── CreateNote.png │ │ │ ├── Emails.png │ │ │ ├── EmojiSearch.png │ │ │ ├── Giphy.png │ │ │ ├── ImageSearch.png │ │ │ ├── Messages.png │ │ │ ├── OpenURL.png │ │ │ ├── Reminders.png │ │ │ ├── Spelling.png │ │ │ ├── Translate.png │ │ │ ├── Weather.png │ │ │ ├── WebSearch.png │ │ │ └── empty.png │ ├── base.css │ ├── images │ │ ├── Icon-Large.png │ │ ├── Icon-inverted.png │ │ ├── Icon.png │ │ ├── email.png │ │ ├── favicon.png │ │ ├── giphy.png │ │ ├── google.png │ │ ├── images.png │ │ ├── imessage.png │ │ ├── large │ │ │ ├── email.png │ │ │ ├── giphy.png │ │ │ ├── google.png │ │ │ ├── images.png │ │ │ ├── imessage.png │ │ │ ├── note.png │ │ │ ├── ping.png │ │ │ ├── reminder.png │ │ │ ├── translate.png │ │ │ ├── weather.png │ │ │ └── wolfram.png │ │ ├── note.png │ │ ├── ping.png │ │ ├── reminder.png │ │ ├── screenshots │ │ │ ├── CalendarEvents.png │ │ │ ├── Call.png │ │ │ ├── CreateNote.png │ │ │ ├── DownloadPlugins.png │ │ │ ├── Eject.png │ │ │ ├── Emails.png │ │ │ ├── EmojiSearch.png │ │ │ ├── GifSearch.png │ │ │ ├── ImageSearch.png │ │ │ ├── LockMac.png │ │ │ ├── LoremIpsum.png │ │ │ ├── Messages.png │ │ │ ├── MoveFiles.png │ │ │ ├── OpenURL.png │ │ │ ├── Plugins.png │ │ │ ├── Reminders.png │ │ │ ├── Spelling.png │ │ │ ├── Spotify.png │ │ │ ├── Terminal.png │ │ │ ├── Timezones.png │ │ │ ├── Translate.png │ │ │ ├── Weather.png │ │ │ ├── WebSearch.png │ │ │ ├── Wikipedia.png │ │ │ └── WolframAlpha.png │ │ ├── simple-screenshot.png │ │ ├── translate.png │ │ ├── weather.png │ │ ├── whatif.png │ │ ├── wolfram.png │ │ └── yosemite-small2.jpg │ ├── index2.css │ ├── plugin_page.css │ ├── preview │ │ └── Flashlight.zip │ └── splash.js ├── stats.html ├── stats.py ├── upload.html ├── uploaded.html └── util.py └── flashlightsearchrelay ├── app.yaml ├── bing_search_api.py ├── favicon.ico ├── image.html ├── index.yaml ├── main.py ├── query.py ├── requests ├── __init__.py ├── adapters.py ├── api.py ├── auth.py ├── cacert.pem ├── certs.py ├── compat.py ├── cookies.py ├── exceptions.py ├── hooks.py ├── models.py ├── packages │ ├── __init__.py │ ├── charade │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── big5freq.py │ │ ├── big5prober.py │ │ ├── chardistribution.py │ │ ├── charsetgroupprober.py │ │ ├── charsetprober.py │ │ ├── codingstatemachine.py │ │ ├── compat.py │ │ ├── constants.py │ │ ├── cp949prober.py │ │ ├── escprober.py │ │ ├── escsm.py │ │ ├── eucjpprober.py │ │ ├── euckrfreq.py │ │ ├── euckrprober.py │ │ ├── euctwfreq.py │ │ ├── euctwprober.py │ │ ├── gb2312freq.py │ │ ├── gb2312prober.py │ │ ├── hebrewprober.py │ │ ├── jisfreq.py │ │ ├── jpcntx.py │ │ ├── langbulgarianmodel.py │ │ ├── langcyrillicmodel.py │ │ ├── langgreekmodel.py │ │ ├── langhebrewmodel.py │ │ ├── langhungarianmodel.py │ │ ├── langthaimodel.py │ │ ├── latin1prober.py │ │ ├── mbcharsetprober.py │ │ ├── mbcsgroupprober.py │ │ ├── mbcssm.py │ │ ├── sbcharsetprober.py │ │ ├── sbcsgroupprober.py │ │ ├── sjisprober.py │ │ ├── universaldetector.py │ │ └── utf8prober.py │ └── urllib3 │ │ ├── __init__.py │ │ ├── _collections.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ ├── __init__.py │ │ ├── ntlmpool.py │ │ └── pyopenssl.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ ├── __init__.py │ │ ├── ordered_dict.py │ │ ├── six.py │ │ └── ssl_match_hostname │ │ │ ├── __init__.py │ │ │ └── _implementation.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util.py ├── sessions.py ├── status_codes.py ├── structures.py └── utils.py ├── secret_config.py ├── util.py └── web.html /Assets/.icon.iconset/.icon_XYZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/.icon.iconset/.icon_XYZ.png -------------------------------------------------------------------------------- /Assets/.icon.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/.icon.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Assets/.icon.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/.icon.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Assets/.icon.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/.icon.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Assets/.icon.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/.icon.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Assets/.icon.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/.icon.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Assets/.icon.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/.icon.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Assets/.icon.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/.icon.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Assets/.icon.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/.icon.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Assets/.icon.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/.icon.iconset/icon_512x512.png -------------------------------------------------------------------------------- /Assets/.icon.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/.icon.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Assets/Flashlight icon.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/Flashlight icon.sketch/Data -------------------------------------------------------------------------------- /Assets/Flashlight icon.sketch/version: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /Assets/FlashlightTool icon.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/FlashlightTool icon.sketch -------------------------------------------------------------------------------- /Assets/Generic Plugin icon.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/Generic Plugin icon.sketch/Data -------------------------------------------------------------------------------- /Assets/Generic Plugin icon.sketch/version: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /Assets/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/Icon.icns -------------------------------------------------------------------------------- /Assets/flat.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/flat.sketch/Data -------------------------------------------------------------------------------- /Assets/flat.sketch/version: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /Assets/flat2 circle.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/flat2 circle.sketch/Data -------------------------------------------------------------------------------- /Assets/flat2 circle.sketch/version: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /Assets/flat2.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/flat2.sketch/Data -------------------------------------------------------------------------------- /Assets/flat2.sketch/version: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /Assets/screenshot.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/screenshot.sketch/Data -------------------------------------------------------------------------------- /Assets/screenshot.sketch/version: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /Assets/statusitem.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Assets/statusitem.sketch/Data -------------------------------------------------------------------------------- /Assets/statusitem.sketch/version: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /Docs/Internationalization.markdown: -------------------------------------------------------------------------------- 1 | *Moved to https://github.com/nate-parrott/Flashlight/wiki/Internationalization * 2 | -------------------------------------------------------------------------------- /Docs/Tutorial.markdown: -------------------------------------------------------------------------------- 1 | *Moved to https://github.com/nate-parrott/Flashlight/wiki/Creating-a-Plugin * -------------------------------------------------------------------------------- /Example Plugins/Say Plugin with Settings/say-with-settings.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | say ~message(Good Morning) 2 | speak ~message(Hello, world) 3 | please speak ~message(what's up) out loud 4 | -------------------------------------------------------------------------------- /Example Plugins/Simple Say Plugin/say.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | say ~message(Good Morning) 2 | speak ~message(Hello, world) 3 | please speak ~message(what's up) out loud 4 | -------------------------------------------------------------------------------- /Example Plugins/Simple Say Plugin/say.bundle/examples_de.txt: -------------------------------------------------------------------------------- 1 | Sage ~message(Guten Morgen) 2 | Sag ~message(Hallo, Welt) 3 | Spreche ~message(Hallo, Welt) 4 | Bitte sage ~message(Was geht) 5 | -------------------------------------------------------------------------------- /Example Plugins/Simple Say Plugin/say.bundle/examples_fr.txt: -------------------------------------------------------------------------------- 1 | dire ~message(Bonjour) 2 | dis ~message(Hello, world) 3 | -------------------------------------------------------------------------------- /FlashlightApp/Crashlytics.framework/Crashlytics: -------------------------------------------------------------------------------- 1 | Versions/Current/Crashlytics -------------------------------------------------------------------------------- /FlashlightApp/Crashlytics.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /FlashlightApp/Crashlytics.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /FlashlightApp/Crashlytics.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /FlashlightApp/Crashlytics.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Crashlytics { 2 | umbrella header "Crashlytics.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /FlashlightApp/Crashlytics.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /FlashlightApp/Crashlytics.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/Crashlytics.framework/run -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/Crashlytics.framework/Crashlytics: -------------------------------------------------------------------------------- 1 | Versions/Current/Crashlytics -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/Crashlytics.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/Crashlytics.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/Crashlytics.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/Crashlytics.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/Crashlytics.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/EasySIMBL/Crashlytics.framework/run -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/GenericPluginIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/EasySIMBL/GenericPluginIcon.icns -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/EasySIMBL/Icon.icns -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/EasySIMBL/Localizable.strings -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/SearchTemplate.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | show a notification saying ~message(hello) 2 | toast ~message(hello world) 3 | notify ~message(good morning!) 4 | -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/WorkflowTemplate.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | show a notification saying ~message(hello) 2 | toast ~message(hello world) 3 | notify ~message(good morning!) 4 | -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/cs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/EasySIMBL/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/el.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/EasySIMBL/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/EasySIMBL/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/EasySIMBL/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/EasySIMBL/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/EasySIMBL/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/EasySIMBL/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/no.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/no.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/EasySIMBL/no.lproj/Localizable.strings -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/EasySIMBL/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/EasySIMBL/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/EasySIMBL/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /FlashlightApp/EasySIMBL/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/EasySIMBL/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /FlashlightApp/FlashlightTool/FlashlightTool/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/FlashlightTool/FlashlightTool/Icon.icns -------------------------------------------------------------------------------- /FlashlightApp/FlashlightTool/FlashlightTool/say.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | say ~message(Good Morning) 2 | speak ~message(Hello, world) 3 | please speak ~message(what's up) out loud 4 | -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/GRMustache.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/GRMustache.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/GRMustacheAvailabilityMacros.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/Shared/GRMustacheAvailabilityMacros.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/GRMustacheConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/Configuration/GRMustacheConfiguration.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/GRMustacheContentType.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/Shared/GRMustacheContentType.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/GRMustacheContext.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/Rendering/GRMustacheContext.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/GRMustacheError.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/Shared/GRMustacheError.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/GRMustacheFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/Rendering/GRMustacheFilter.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/GRMustacheLocalizer.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/Services/StandardLibrary/GRMustacheLocalizer.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/GRMustacheRendering.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/Rendering/GRMustacheRendering.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/GRMustacheSafeKeyAccess.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/Rendering/GRMustacheSafeKeyAccess.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/GRMustacheTag.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/Compiling/TemplateAST/GRMustacheTag.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/GRMustacheTagDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/Rendering/GRMustacheTagDelegate.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/GRMustacheTemplate.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/Templates/GRMustacheTemplate.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/GRMustacheTemplateRepository.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/Templates/GRMustacheTemplateRepository.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/GRMustacheVersion.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/GRMustacheVersion.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/NSFormatter+GRMustache.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/Services/NSFormatter+GRMustache.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/GRMustache/NSValueTransformer+GRMustache.h: -------------------------------------------------------------------------------- 1 | ../../../GRMustache/src/classes/Services/NSValueTransformer+GRMustache.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/JRSwizzle/JRSwizzle.h: -------------------------------------------------------------------------------- 1 | ../../../JRSwizzle/JRSwizzle.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/Headers/Public/LetsMove/PFMoveApplication.h: -------------------------------------------------------------------------------- 1 | ../../../LetsMove/PFMoveApplication.h -------------------------------------------------------------------------------- /FlashlightApp/Pods/LetsMove/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FlashlightApp/Pods/Sparkle/Sparkle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /FlashlightApp/Pods/Sparkle/Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /FlashlightApp/Pods/Sparkle/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /FlashlightApp/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /FlashlightApp/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fr_CA.lproj: -------------------------------------------------------------------------------- 1 | fr.lproj -------------------------------------------------------------------------------- /FlashlightApp/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt.lproj: -------------------------------------------------------------------------------- 1 | pt_BR.lproj -------------------------------------------------------------------------------- /FlashlightApp/Pods/Sparkle/Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /FlashlightApp/Pods/Target Support Files/Pods-Flashlight-GRMustache/Pods-Flashlight-GRMustache.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_FLASHLIGHT_GRMUSTACHE_OTHER_LDFLAGS = -framework "Foundation" -------------------------------------------------------------------------------- /FlashlightApp/Pods/Target Support Files/Pods-Flashlight-JRSwizzle/Pods-Flashlight-JRSwizzle.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_FLASHLIGHT_JRSWIZZLE_OTHER_LDFLAGS = -framework "Foundation" -------------------------------------------------------------------------------- /FlashlightApp/README.md: -------------------------------------------------------------------------------- 1 | This is simply a fork of [EasySIMBL](https://github.com/norio-nomura/EasySIMBL), customized to only launch Flashlight and maintain a UI. 2 | -------------------------------------------------------------------------------- /FlashlightApp/SIMBL Agent/StatusItemOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/SIMBL Agent/StatusItemOn.png -------------------------------------------------------------------------------- /FlashlightApp/SIMBL Agent/StatusItemOn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/SIMBL Agent/StatusItemOn@2x.png -------------------------------------------------------------------------------- /FlashlightApp/SIMBL Agent/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/SIMBL Agent/it.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /FlashlightApp/SIMBL Agent/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/FlashlightApp/SIMBL Agent/ru.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /FlashlightApp/src/SIMBL_Prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | 4 | #endif 5 | -------------------------------------------------------------------------------- /Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/Image.png -------------------------------------------------------------------------------- /PluginDirectories/1/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip -------------------------------------------------------------------------------- /PluginDirectories/1/1688.bundle/3.version: -------------------------------------------------------------------------------- 1 | 75f0d4e3a2f6e52d621e7c9826a9568698a3a719c69c0451ec7e3df152592d11 -------------------------------------------------------------------------------- /PluginDirectories/1/1688.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | 1688 ~ylbbquery(query here) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/2do.bundle/1.version: -------------------------------------------------------------------------------- 1 | 33249adaed3c50f5bf300b88dcaea6f4670ed9d166fbe0af289bad175dc5ee33 -------------------------------------------------------------------------------- /PluginDirectories/1/2do.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/2do.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/500px.bundle/2.version: -------------------------------------------------------------------------------- 1 | a5014f13eb039e9cdae170c94a7d2ca6cc47d2d67f9aff23fb1a97afe5bb9f6e -------------------------------------------------------------------------------- /PluginDirectories/1/500px.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/500px.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/AcFun&Bilibili.bundle/1.version: -------------------------------------------------------------------------------- 1 | 16307e56e9459423bf7cd60c4fefb9f821541c5554117973f76d0bf1c6a060bf -------------------------------------------------------------------------------- /PluginDirectories/1/AcFun&Bilibili.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | ac ~ac(query) 2 | acfun ~ac(query) 3 | bili ~bili(query) 4 | bilibili ~bili(query) -------------------------------------------------------------------------------- /PluginDirectories/1/Brackets.bundle/2.version: -------------------------------------------------------------------------------- 1 | 6e67a00b1587f2c15e9df226b8fc03ba9e6c1adc6b2f6683b3128be343c35f57 -------------------------------------------------------------------------------- /PluginDirectories/1/Brackets.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/Brackets.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/Brackets.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | Open with brackets 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/CanIUse.bundle/2.version: -------------------------------------------------------------------------------- 1 | 8bd4afc27f2b446dad2a00e82cbfbc1dc14755191e8677a209ef32c31a95b297 -------------------------------------------------------------------------------- /PluginDirectories/1/CanIUse.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/CanIUse.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/CanIUse.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | CIU ~caniusequery(query here) 2 | Can I use ~caniusequery(query here) 3 | can i use ~caniusequery(query here) 4 | caniuse ~caniusequeryquery here) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/CopyPath.bundle/2.version: -------------------------------------------------------------------------------- 1 | 92248bb1b1aaf92f1132b286d04de54565510578ee766beb66963bc84deac487 -------------------------------------------------------------------------------- /PluginDirectories/1/CopyPath.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/CopyPath.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/CopyPath.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | Path 2 | CopyPath 3 | Copy Path -------------------------------------------------------------------------------- /PluginDirectories/1/CopyPath.bundle/examples_de.txt: -------------------------------------------------------------------------------- 1 | Path 2 | CopyPath 3 | Copy Path 4 | Pfad 5 | Pfad kopieren 6 | kopiere Pfad -------------------------------------------------------------------------------- /PluginDirectories/1/CopyPath.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Copy Path": "Pfad kopieren" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/EmptyTrash.bundle/1.version: -------------------------------------------------------------------------------- 1 | 88ccc443ead88a950fbf813e5c9ca0875ff2875434fa436278aefde188fae0e8 -------------------------------------------------------------------------------- /PluginDirectories/1/EmptyTrash.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | empty trash 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/FontAwesome.bundle/2.version: -------------------------------------------------------------------------------- 1 | 5000e3be388d6ff8261d18b7f66e5f68f976b27bcf19a414d81d1bac149dc11e -------------------------------------------------------------------------------- /PluginDirectories/1/FontAwesome.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/FontAwesome.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/FontAwesome.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | fontawesome ~fontawesome(query here) 2 | search fontawesome ~fontawesome(query here) 3 | fa ~fontawesome(query here) -------------------------------------------------------------------------------- /PluginDirectories/1/Instranslator.bundle/2.version: -------------------------------------------------------------------------------- 1 | e25ca1a18edc7aac9e6754431bdc45f0a40278869514cc7c39e81e842a08954b -------------------------------------------------------------------------------- /PluginDirectories/1/Instranslator.bundle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/Instranslator.bundle/icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/NightFoxAmbient.bundle/1.version: -------------------------------------------------------------------------------- 1 | 460040ed2d2d5453bd02366478d5b7a74f583f721b195823466036bced24471a -------------------------------------------------------------------------------- /PluginDirectories/1/NightFoxAmbient.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/NightFoxAmbient.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/NightFoxAmbient.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | nfx ~message(xyz) 2 | tweet ~message(xyz) 3 | t ~message(xyz) -------------------------------------------------------------------------------- /PluginDirectories/1/NightFoxAmbient.bundle/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/NightFoxAmbient.bundle/help.png -------------------------------------------------------------------------------- /PluginDirectories/1/NightFoxAmbient.bundle/license: -------------------------------------------------------------------------------- 1 | librares 2 | 3 | https://github.com/idan/oauthlib 4 | https://github.com/requests/requests-oauthlib 5 | https://github.com/kennethreitz/requests -------------------------------------------------------------------------------- /PluginDirectories/1/NightFoxAmbient.bundle/requests/packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/NoLongerWorking/Wunderlist.bundle/3.version: -------------------------------------------------------------------------------- 1 | 43d942410454b5ce5252ce1995102ebd117418b1ba406e9b6d20d360307be326 -------------------------------------------------------------------------------- /PluginDirectories/1/NoLongerWorking/Wunderlist.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | wunderlist ~task(do the dishes) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/NoLongerWorking/Wunderlist.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | "email" : "", 3 | "password" : "" 4 | } -------------------------------------------------------------------------------- /PluginDirectories/1/Xueqiu.bundle/1.version: -------------------------------------------------------------------------------- 1 | e839c4af73b1008dc6429582c29959cd713b8ca9fd5d9b5a602058b14a5e156f -------------------------------------------------------------------------------- /PluginDirectories/1/Xueqiu.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/Xueqiu.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/Xueqiu.bundle/content.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /PluginDirectories/1/Xueqiu.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | xq ~path(S/AAPL) 2 | zh ~symbol(8888) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/airdrop.bundle/1.version: -------------------------------------------------------------------------------- 1 | b1657a9b43931c391a4b844b55aff3a86fbd3550ac0ada7a4eaed81d6dd3477e -------------------------------------------------------------------------------- /PluginDirectories/1/airdrop.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/airdrop.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/airdrop.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | airdrop 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/airdrop.bundle/strings_ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open AirDrop": "AirDrop を開く" 3 | } 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/alc.bundle/2.version: -------------------------------------------------------------------------------- 1 | d6482c091936290f294e7a94c88bc44f4efde76a5ec24f9716b67de6ccd4a0ef -------------------------------------------------------------------------------- /PluginDirectories/1/alc.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/alc.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/alc.bundle/README.markdown: -------------------------------------------------------------------------------- 1 | #Alc英辞郎 on the WEB プラグイン 2 | このプラグインは英辞郎 on the WEBを検索するものです。 3 | 使用方法は以下の通りです。 4 | 5 | ```alc 検索ワード``` -------------------------------------------------------------------------------- /PluginDirectories/1/alc.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/alc.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/alc.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | alc ~alceow(Good Morning) 2 | eow ~alceow(Good Morning) -------------------------------------------------------------------------------- /PluginDirectories/1/alibaba.bundle/2.version: -------------------------------------------------------------------------------- 1 | 5f65d75268456b39afe5800bc8c97ac12c0a9fe076302f03e39ec28184b5d159 -------------------------------------------------------------------------------- /PluginDirectories/1/alibaba.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | alibaba ~alibabaquery(query here) 2 | ab ~alibabaquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/aliexpress.bundle/2.version: -------------------------------------------------------------------------------- 1 | cfe09ccd747ec1f3b60ff92db8a118a665712dda9d410d26af79db7a7a57c926 -------------------------------------------------------------------------------- /PluginDirectories/1/aliexpress.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | aliexpress ~aliexpressquery(query here) 2 | ae ~aliexpressquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/allocine.bundle/2.version: -------------------------------------------------------------------------------- 1 | 0ef4d733a327f0f9eede2b2135602a18456171bc367644a9050903c1de699fbf -------------------------------------------------------------------------------- /PluginDirectories/1/allocine.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/allocine.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/allocine.bundle/strings_fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for '{1}'": "Chercher sur {0} pour '{1}'" 3 | } 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/amazon.bundle/2.version: -------------------------------------------------------------------------------- 1 | cf9c69b5eb5ac1f39e40ec12b167d02e9165df44e6f30f4fdd61154faad4a790 -------------------------------------------------------------------------------- /PluginDirectories/1/amazon.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | amazon ~amazonquery(query here) 2 | a ~amazonquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/amazon.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Time in \"{0}\"": "Zeit in \"{0}\"" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/angulardocs.bundle/1.version: -------------------------------------------------------------------------------- 1 | 40dca91bf88805155b32bd65638290fb9d827706523f000c8bedb9630e1b28ab -------------------------------------------------------------------------------- /PluginDirectories/1/angulardocs.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/angulardocs.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/angulardocs.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | angular ~query(directive) 2 | ng ~query(compile) -------------------------------------------------------------------------------- /PluginDirectories/1/appanniesearch.bundle/1.version: -------------------------------------------------------------------------------- 1 | 761b40a2ded9b755d9cf504094b5bdc2eb32f764eda808380525e7a024cab9e0 -------------------------------------------------------------------------------- /PluginDirectories/1/appanniesearch.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/appanniesearch.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/appanniesearch.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | aa ~aaquery(query here) 2 | annie ~aaquery(query here) 3 | appannie ~aaquery(query here) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/asana.bundle/1.version: -------------------------------------------------------------------------------- 1 | 12746bebdc13b6ae2f6ebb3e3605d75fa4ac77579d1176a84bf48fdf964f2e16 -------------------------------------------------------------------------------- /PluginDirectories/1/asana.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | asana ~task(do the dishes) -------------------------------------------------------------------------------- /PluginDirectories/1/asana.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | "workspace" : "personal", 3 | "orgainzation_name": "", 4 | "api_key":"" 5 | } -------------------------------------------------------------------------------- /PluginDirectories/1/asciiWWDC.bundle/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/asciiWWDC.bundle/.gitmodules -------------------------------------------------------------------------------- /PluginDirectories/1/asciiWWDC.bundle/1.version: -------------------------------------------------------------------------------- 1 | 238b5f7d296c830fd51a08946de41b4afe364f55580f2c19d42d595663eb4363 -------------------------------------------------------------------------------- /PluginDirectories/1/asciiWWDC.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/asciiWWDC.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/asciiWWDC.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | search wwdc for ~query(reactivecocoa) 2 | wwdc: ~query(apaddressbook) 3 | wwdc ~query(core data) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/atom.bundle/1.version: -------------------------------------------------------------------------------- 1 | 17f1caab2177b59aa5bbd4a78a38a4fa5a2b6efff47efe2bf41b53f7eff0877d -------------------------------------------------------------------------------- /PluginDirectories/1/atom.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | atom 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/baidu.bundle/1.version: -------------------------------------------------------------------------------- 1 | dcd099b9a18e273bd902cd0d7b50142a4ce1d883813ca43898138515d6caac17 -------------------------------------------------------------------------------- /PluginDirectories/1/baidu.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | baidu search for ~baiduquery(query here) 2 | baidu ~baiduquery(query here) 3 | bd ~baiduquery(query here) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/bing.bundle/2.version: -------------------------------------------------------------------------------- 1 | df3abd30d600439f4b37db55ca965fe7cfb7ebf452b3428f903e68aa65ffb0df -------------------------------------------------------------------------------- /PluginDirectories/1/bing.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | bing search for ~bingquery(query here) 2 | bing ~bingquery(query here) 3 | bg ~bingquery(query here) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/bing.bundle/examples_de.txt: -------------------------------------------------------------------------------- 1 | bing suche nach ~bingquery(query here) 2 | bing ~bingquery(query here) 3 | bg ~bingquery(query here) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/bing.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for '{1}'": "Durchsuche {0} nach '{1}'" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/bitcoin.bundle/3.version: -------------------------------------------------------------------------------- 1 | 4f9d86ac268e0bad219a501aeab7805ad691f988b6286eca3fb05658fa68086a -------------------------------------------------------------------------------- /PluginDirectories/1/bitcoin.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/bitcoin.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/bitcoin.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | bitcoin 2 | btc 3 | ~n(1) bitcoin 4 | ~n(1) btc 5 | bitcoin ~n(1) 6 | btc ~n(1) 7 | ~n(1)bitcoin 8 | ~n(1)btc -------------------------------------------------------------------------------- /PluginDirectories/1/bitcoin.bundle/examples_fr.txt: -------------------------------------------------------------------------------- 1 | bitcoin 2 | btc 3 | ~n(1) bitcoin 4 | ~n(1) btc 5 | bitcoin ~n(1) 6 | btc ~n(1) 7 | ~n(1)bitcoin 8 | ~n(1)btc -------------------------------------------------------------------------------- /PluginDirectories/1/bitcoin.bundle/glyph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/bitcoin.bundle/glyph.png -------------------------------------------------------------------------------- /PluginDirectories/1/bitcoin.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | "currency_code":false 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/brew-formulas.bundle/1.version: -------------------------------------------------------------------------------- 1 | fb8d0f27ba8114badbbcd4e1038b12f602a3aaf7a1ac61fe9833bfe925fa6e20 -------------------------------------------------------------------------------- /PluginDirectories/1/brew-formulas.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/brew-formulas.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/brew-formulas.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | brew formulas ~bfquery(query here) 2 | brew ~bfquery(query here) 3 | bf ~bfquery(query here) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/bye404.bundle/1.version: -------------------------------------------------------------------------------- 1 | e9da6f225baa0a064f3d7f7590786b4f087353e7ddd136c50f2b81a60175b409 -------------------------------------------------------------------------------- /PluginDirectories/1/bye404.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/bye404.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/bye404.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | bye404 search ~query(query here) 2 | bye404 ~query(query here) 3 | 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/bye404.bundle/examples_zh.txt: -------------------------------------------------------------------------------- 1 | bye404 搜索 ~query(query here) 2 | bye404 ~query(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/calculator.bundle/1.version: -------------------------------------------------------------------------------- 1 | f01949c9b31b7adcfa0a544b3de2c77e9c0d99eb4084fb6ab6a67cd1a1e4e408 -------------------------------------------------------------------------------- /PluginDirectories/1/calculator.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/calculator.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/calculator.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | cal ~expression(2+3) 2 | cal ~expression(3-5) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/calendar.bundle/5.version: -------------------------------------------------------------------------------- 1 | d0a7961fc737f0d99aa1698952b01823cebf6a4a75e0fe3856c2b8f3f20daa8d -------------------------------------------------------------------------------- /PluginDirectories/1/calendar.bundle/EventKitUtility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/calendar.bundle/EventKitUtility -------------------------------------------------------------------------------- /PluginDirectories/1/calendar.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/calendar.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/calendar.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/calendar.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/calendar.bundle/jinja2/testsuite/res/templates/broken.html: -------------------------------------------------------------------------------- 1 | Before 2 | {{ fail() }} 3 | After 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/calendar.bundle/jinja2/testsuite/res/templates/foo/test.html: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/calendar.bundle/jinja2/testsuite/res/templates/syntaxerror.html: -------------------------------------------------------------------------------- 1 | Foo 2 | {% for item in broken %} 3 | ... 4 | {% endif %} 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/calendar.bundle/jinja2/testsuite/res/templates/test.html: -------------------------------------------------------------------------------- 1 | BAR 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/call.bundle/5.version: -------------------------------------------------------------------------------- 1 | 2887d8db2dfc550c10f7fc6702eebc9356d743165b7624d1ca7cbc666cd5bf81 -------------------------------------------------------------------------------- /PluginDirectories/1/call.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/call.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/call.bundle/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/call.bundle/icomoon.ttf -------------------------------------------------------------------------------- /PluginDirectories/1/ccgenerator.bundle/1.version: -------------------------------------------------------------------------------- 1 | fadc1e1f2625933cea769e0994361f1543313e4b92d6b878d1b1918ab4ee8311 -------------------------------------------------------------------------------- /PluginDirectories/1/ccgenerator.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/ccgenerator.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/ccgenerator.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | visa 2 | master 3 | mastercard 4 | amex 5 | diners 6 | jcb 7 | discover 8 | hiper 9 | hipercard 10 | -------------------------------------------------------------------------------- /PluginDirectories/1/choc.bundle/3.version: -------------------------------------------------------------------------------- 1 | 08585d42ac7de3e6f3f19e449f689a50db3f45897b270e2a26066bc997e596bb -------------------------------------------------------------------------------- /PluginDirectories/1/choc.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/choc.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/choc.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | choc ~query(path) 2 | chocolat ~query(path) 3 | open with chocolat ~query(path) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/choc.bundle/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/choc.bundle/folder.png -------------------------------------------------------------------------------- /PluginDirectories/1/choc.bundle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/choc.bundle/icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/click-menu.bundle/2.version: -------------------------------------------------------------------------------- 1 | aeeda7b9a32ce490411711c2d6527b0f1dcca042a33f39f8b33d197219b81acf -------------------------------------------------------------------------------- /PluginDirectories/1/click-menu.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/click-menu.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/click-menu.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/click-menu.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/click-menu.bundle/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/click-menu.bundle/Settings.png -------------------------------------------------------------------------------- /PluginDirectories/1/click-menu.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | click ~item(blur) 2 | - ~item(paste and match style) 3 | menu item ~item(help) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/clojuredocs.bundle/1.version: -------------------------------------------------------------------------------- 1 | 12e43f2ba90f114a379ad1052a90cdc4b5fb575f0e4d776595d4ff6501ba9999 -------------------------------------------------------------------------------- /PluginDirectories/1/clojuredocs.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/clojuredocs.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/clojuredocs.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | clojure docs ~cdquery(query here) 2 | clj docs ~cdquery(query here) 3 | cljdocs ~cdquery(query here) 4 | clojuredocs ~cdquery(query here) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/cloudapp.bundle/2.version: -------------------------------------------------------------------------------- 1 | 333f53835598738b268e78428084e3dcbffbddc4da80e1b466ead7cc888e46bb -------------------------------------------------------------------------------- /PluginDirectories/1/cloudapp.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/cloudapp.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/cloudapp.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/cloudapp.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/cloudapp.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | upload @file(...) to cloudapp 2 | cloud @file(...) 3 | cloudapp @file(...) 4 | cl.ly link for @file(...) 5 | copy a link to @file(...) 6 | -------------------------------------------------------------------------------- /PluginDirectories/1/cloudapp.bundle/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/cloudapp.bundle/icomoon.ttf -------------------------------------------------------------------------------- /PluginDirectories/1/cocoapods.bundle/1.version: -------------------------------------------------------------------------------- 1 | eea10dd172be597a9a8b76d1f56251d58e041f4eb81385bfbd9cbf1f0b4a8a0b -------------------------------------------------------------------------------- /PluginDirectories/1/cocoapods.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/cocoapods.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/cocoapods.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | search cocoapods for ~query(reactivecocoa) 2 | cocoapods: ~query(apaddressbook) 3 | pod ~query(core data) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/codic.bundle/1.version: -------------------------------------------------------------------------------- 1 | 6e4e6424abd8548f67b66c15e3898324c3d4694de0aedf4e9e137959efc9a242 -------------------------------------------------------------------------------- /PluginDirectories/1/codic.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/codic.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/codic.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | codic ~query(manifest) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/colisimo.bundle/1.version: -------------------------------------------------------------------------------- 1 | c3c23e3ee4e536f8faf74f1d7eda6ef15f9ee250fb3023133b724730d4882038 -------------------------------------------------------------------------------- /PluginDirectories/1/colisimo.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/colisimo.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/colisimo.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | colissimo ~enParcelnumber<8J13257432657> 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/colisimo.bundle/examples_de.txt: -------------------------------------------------------------------------------- 1 | colissimo ~deParcelnumber(8J13257432657) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/colisimo.bundle/examples_es.txt: -------------------------------------------------------------------------------- 1 | colissimo ~esParcelnumber(8J13257432657) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/colisimo.bundle/examples_fr.txt: -------------------------------------------------------------------------------- 1 | colissimo ~frParcelnumber(8J13257432657) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/colisimo.bundle/examples_it.txt: -------------------------------------------------------------------------------- 1 | colissimo ~itParcelnumber(8J13257432657) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/colisimo.bundle/examples_nl.txt: -------------------------------------------------------------------------------- 1 | colissimo ~nlParcelnumber(8J13257432657) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/colisimo.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for parcel number '{1}'": "Suche {0} nach Paketnummer '{1}'" 3 | } 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/colisimo.bundle/strings_es.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for parcel number '{1}'": "Seguimiento {0} Número de paquete '{1}'" 3 | } 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/colisimo.bundle/strings_fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for '{1}'": "Suivi {0} pour le paquet n° '{1}'" 3 | } 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/colisimo.bundle/strings_it.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for parcel number '{1}'": "Monitoraggio {0} numero di collo '{1}'" 3 | } 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/colisimo.bundle/strings_nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for parcel number '{1}'": "Volgen {0} pakketnummer '{1}'" 3 | } 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/copycolor.bundle/5.version: -------------------------------------------------------------------------------- 1 | fd2a8926f5fa44c3da43c59133f975355aca51f72e39d0b6f31a7a916b449ff0 -------------------------------------------------------------------------------- /PluginDirectories/1/copycolor.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/copycolor.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/cowsay.bundle/1.version: -------------------------------------------------------------------------------- 1 | 6473d8cef4c15a8a5787f0f6345143177f4bf4db81361b707c320c51801484da -------------------------------------------------------------------------------- /PluginDirectories/1/cowsay.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | cowsay ~message(Hi) 2 | cs ~message(Hi) -------------------------------------------------------------------------------- /PluginDirectories/1/crunchbase.bundle/1.version: -------------------------------------------------------------------------------- 1 | 92d12939b149bc89526705f84b9a88702449bc8af8923e7a3c81bec48ea2c7bb -------------------------------------------------------------------------------- /PluginDirectories/1/crunchbase.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/crunchbase.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/crunchbase.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | crunchbase ~crunchbase(query here) 2 | search crunchbase for ~crunchbasequery(query here) 3 | find ~crunchbase(Google) on crunchbase 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/custom-search.bundle/3.version: -------------------------------------------------------------------------------- 1 | b487cf6ede741332859a8915b7bf62ad789816aa5d4691b56bb27ad6f3bc6417 -------------------------------------------------------------------------------- /PluginDirectories/1/custom-search.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | !always_invoke -------------------------------------------------------------------------------- /PluginDirectories/1/custom-search.bundle/icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/custom-search.bundle/icon-dark.png -------------------------------------------------------------------------------- /PluginDirectories/1/custom-search.bundle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/custom-search.bundle/icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/daily.zhihu.bundle/1.version: -------------------------------------------------------------------------------- 1 | b050a4b28b33df776b6425afd209113cd6cc064d0d8b5e908ed13906589c8594 -------------------------------------------------------------------------------- /PluginDirectories/1/daily.zhihu.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/daily.zhihu.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/daily.zhihu.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | zhihu daily 2 | zhihu hot -------------------------------------------------------------------------------- /PluginDirectories/1/dash.bundle/1.version: -------------------------------------------------------------------------------- 1 | ee263207c26a41510a6e28c5266124da46cfa7bbc63d378d1cbe7caef9988387 -------------------------------------------------------------------------------- /PluginDirectories/1/dash.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/dash.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/devdocs.bundle/3.version: -------------------------------------------------------------------------------- 1 | 267683b0baaf9d5dc994f078e4cb6144dc3af1ec5a330bc70bde13150017ee0f -------------------------------------------------------------------------------- /PluginDirectories/1/devdocs.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/devdocs.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/devdocs.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | devdocs.io ~query(sth) 2 | devdocs ~query(sth) 3 | dd ~query(sth) 4 | devdocs.io ~query(lang sth) 5 | devdocs ~query(lang sth) 6 | dd ~query(lang sth) 7 | -------------------------------------------------------------------------------- /PluginDirectories/1/deviantart.bundle/2.version: -------------------------------------------------------------------------------- 1 | 6e24b094145da7a236c93a8e2eb37dc3ac90e525a6cee986743538c75f2e1ed6 -------------------------------------------------------------------------------- /PluginDirectories/1/deviantart.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/deviantart.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/dhltracking.bundle/3.version: -------------------------------------------------------------------------------- 1 | 70da1507e4fbb57c7ce6f57b310c7ef325ff6c42edd2f7874d6b19642324aa4a -------------------------------------------------------------------------------- /PluginDirectories/1/dhltracking.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/dhltracking.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/dhltracking.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/dhltracking.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/dhltracking.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | dhl ~dhlquery(query here) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/dictcc.bundle/1.version: -------------------------------------------------------------------------------- 1 | fc4a01ecb6c8c7de7eeecc327c28f9c7c270b8b8ad2a23e171b7c2de26222a86 -------------------------------------------------------------------------------- /PluginDirectories/1/dictcc.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/dictcc.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/dictcc.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | dict ~query(query here) 2 | dictcc ~query(query here) -------------------------------------------------------------------------------- /PluginDirectories/1/dictcc.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Translate '{0}' using dict.cc": "Übersetzte '{0}' mit dict.cc" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/dig.bundle/1.version: -------------------------------------------------------------------------------- 1 | cd3b20a5ed4b01f4ece6bb210e6634dd0021f5da8f1a98c5ecf76ffee1ac8578 -------------------------------------------------------------------------------- /PluginDirectories/1/dig.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/dig.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/dig.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | dig ~domain(www.google.com) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/diki.bundle/1.version: -------------------------------------------------------------------------------- 1 | ce57043fe9316a67900275ef41cc50789940300b5517bae9b3ad1e31ef0c983e -------------------------------------------------------------------------------- /PluginDirectories/1/diki.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | diki ~dikiquery(query here) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/discogs.bundle/1.version: -------------------------------------------------------------------------------- 1 | 8c023a73c98e1d448309629fd8bde455ddbab2ff560209560ba7d092ddd1c31c -------------------------------------------------------------------------------- /PluginDirectories/1/discogs.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/discogs.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/dizionario.bundle/1.version: -------------------------------------------------------------------------------- 1 | b842cfb94819821955f5d729a84318b087427d7a36a973b3ae4647eeba0b3707 -------------------------------------------------------------------------------- /PluginDirectories/1/doc-webdev.bundle/2.version: -------------------------------------------------------------------------------- 1 | 60615fc285a8a90f79d126f86a1c89ad9dc2de096fadc4c67d0b9ee32fc0000f -------------------------------------------------------------------------------- /PluginDirectories/1/doc-webdev.bundle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/doc-webdev.bundle/icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/dockerImageSearch.bundle/2.version: -------------------------------------------------------------------------------- 1 | 64ff71816dea8a0c46f844e8b3e30adc95ff74b30c34f12c0bdc4837a23c5769 -------------------------------------------------------------------------------- /PluginDirectories/1/dockerImageSearch.bundle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/dockerImageSearch.bundle/icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/douban.bundle/2.version: -------------------------------------------------------------------------------- 1 | 7a827a4e9b2047dab952384b3ec335fdc7cc9fe95fd8a0a9035249b235fab115 -------------------------------------------------------------------------------- /PluginDirectories/1/douban.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/douban.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/douban.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | douban ~keyword(Star Wars) 2 | 豆瓣 ~keyword(Star Wars) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/duckduckgo.bundle/2.version: -------------------------------------------------------------------------------- 1 | a1c7a7febcff8fc0bf82e010d7a91682ea5498613faae657e5d1cac8a08c9894 -------------------------------------------------------------------------------- /PluginDirectories/1/duckduckgo.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/duckduckgo.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/ebay.bundle/2.version: -------------------------------------------------------------------------------- 1 | 03b82df88b0d1d8b45ba907256dc493a693c55a5da722ed76ce4be4c397730a2 -------------------------------------------------------------------------------- /PluginDirectories/1/ebay.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | ebay ~ebayquery(query here) 2 | e ~ebayquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/ebay.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for '{1}'": "Durchsuche {0} nach '{1}'" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/eject.bundle/2.version: -------------------------------------------------------------------------------- 1 | 8bb3a8ce1aeef52d2417de8e976607704a3555c59a89343ca39afb8ab4273318 -------------------------------------------------------------------------------- /PluginDirectories/1/eject.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/eject.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/eject.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | ejectall 2 | eject all 3 | eject ~device(dev) 4 | ej ~device(dev) 5 | ejall 6 | ej all -------------------------------------------------------------------------------- /PluginDirectories/1/emoji.bundle/2.version: -------------------------------------------------------------------------------- 1 | 40785ddd9bfdecf30462d888f99fad5a4ae686e32e7f1b49b3621c0e0c75d22e -------------------------------------------------------------------------------- /PluginDirectories/1/emoji.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/emoji.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/emoji.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/emoji.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/emoji.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | emoji ~emoji(grinn) 2 | gemoji ~gemoji(grinn) 3 | :~gemoji(grinn): 4 | ~emoji(happy) emoji 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/espn.bundle/2.version: -------------------------------------------------------------------------------- 1 | 2ab88d63d2ffab6f07a734c5f1f25cf8f2a0d64ac6dc5a1608b7a807b44a94cf -------------------------------------------------------------------------------- /PluginDirectories/1/espn.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/espn.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/espn.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | espn @sport(nhl) 2 | espn scores ~sport(nfl) 3 | ~sport(mlb) scores 4 | ~sport(nba) espn scores 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /PluginDirectories/1/evernote-search.bundle/1.version: -------------------------------------------------------------------------------- 1 | 0bfe3f4b30e68706521a1d6f91fbae2011c2c7d31565d7371424e20a4075e8ce -------------------------------------------------------------------------------- /PluginDirectories/1/evernote-search.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/evernote-search.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/evernote-search.bundle/README.markdown: -------------------------------------------------------------------------------- 1 | # Evernote search plugin 2 | 3 | - Uses Applescript to fetch and open notes -------------------------------------------------------------------------------- /PluginDirectories/1/evernote-search.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | search evernote for ~query(Workout Routine) 2 | evernote ~query(Funny documents) 3 | notes ~query(Cooking Recipes) -------------------------------------------------------------------------------- /PluginDirectories/1/excuse.bundle/1.version: -------------------------------------------------------------------------------- 1 | 14059341bf1a52f45410d1d47150e36a531ba81d80082d977830cbb60c1ea24d -------------------------------------------------------------------------------- /PluginDirectories/1/excuse.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | excuse 2 | give me an excuse 3 | help me 4 | help me out of this 5 | programming excuse 6 | programmer excuse 7 | developer excuse -------------------------------------------------------------------------------- /PluginDirectories/1/fasttweet.bundle/3.version: -------------------------------------------------------------------------------- 1 | 47bb970b9c4aff78f7399db2c3593d551c2abf2d93b82221caaf7222f308784d -------------------------------------------------------------------------------- /PluginDirectories/1/fasttweet.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/fasttweet.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/fasttweet.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/fasttweet.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/fasttweet.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | tweet ~message(I'm happy) 2 | t ~message(Hello, world) -------------------------------------------------------------------------------- /PluginDirectories/1/favorites.bundle/2.version: -------------------------------------------------------------------------------- 1 | 04de2806050c8f419f30953d62661149b1fc39fcf04b5606f4bc8beb096f4db0 -------------------------------------------------------------------------------- /PluginDirectories/1/favorites.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/favorites.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/favorites.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | ~query 2 | !always_invoke -------------------------------------------------------------------------------- /PluginDirectories/1/favorites.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Searching '{0}' using Flickr": "Durchsuche Flickr nach '{0}'" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/fedex.bundle/1.version: -------------------------------------------------------------------------------- 1 | 261bc32191eb70de466c1798006b12e99d9a4ec2b7e51888f8cb2a84b7dfa595 -------------------------------------------------------------------------------- /PluginDirectories/1/fedex.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/fedex.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/fedex.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/fedex.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/fedex.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | fedex ~fedexquery(query here) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/flashlight.bundle/2.version: -------------------------------------------------------------------------------- 1 | ff723157b4475da60a58e870400e7f7c31415f19a98261545f75e7de775f9add -------------------------------------------------------------------------------- /PluginDirectories/1/flashlight.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/flashlight.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/flashlight.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/flashlight.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/flickr.bundle/2.version: -------------------------------------------------------------------------------- 1 | f233e6b137aac2f5f344dbc827dbc6706acad6cf90704838a75715de7214604a -------------------------------------------------------------------------------- /PluginDirectories/1/flickr.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | flickr ~query(query here) -------------------------------------------------------------------------------- /PluginDirectories/1/flickr.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Searching '{0}' using Flickr": "Durchsuche Flickr nach '{0}'" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/fntoggle.bundle/1.version: -------------------------------------------------------------------------------- 1 | 2ba9cf53e6de397c72b3f69de18cec6a18bb401c464f98851881e527a5f3e982 -------------------------------------------------------------------------------- /PluginDirectories/1/fntoggle.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | fntoggle 2 | toggle function keys -------------------------------------------------------------------------------- /PluginDirectories/1/fpm.bundle/3.version: -------------------------------------------------------------------------------- 1 | 612d0466d28d45fc785c2425629289914ce81c15b7eaeade69e1bd6f19a923c1 -------------------------------------------------------------------------------- /PluginDirectories/1/fpm.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/fpm.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/fpm.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/fpm.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/fpm.bundle/assets/Icon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/fpm.bundle/assets/Icon.ai -------------------------------------------------------------------------------- /PluginDirectories/1/fpm.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | fpm install ~id(a) 2 | fpm remove ~id(a) 3 | flashpm install ~id(a) 4 | flashpm remove ~id(a) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/gasprice.bundle/1.version: -------------------------------------------------------------------------------- 1 | 0556d8ddc3b299797aed6a26862f2f6b94a00959b68e93eb4ede92c3d0c00487 -------------------------------------------------------------------------------- /PluginDirectories/1/gasprice.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/gasprice.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/gasprice.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Gas Price for '{0}'": "Benzinpreis für '{0}'" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/genius.bundle/2.version: -------------------------------------------------------------------------------- 1 | 707e3fd32b472c68047f8a9eb066acc20461f02c0d7bd59503ce7f3ba73401d1 -------------------------------------------------------------------------------- /PluginDirectories/1/genius.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/genius.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/genius.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | genius ~geniusquery(query here) 2 | search genius for ~geniusquery(query here) 3 | find ~geniusquery(Kanye West) on genius 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/genius.bundle/examples_de.txt: -------------------------------------------------------------------------------- 1 | genius ~geniusquery(query here) 2 | suche genius nach ~geniusquery(query here) 3 | finde ~geniusquery(Kanye West) in genius 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/gif.bundle/1.version: -------------------------------------------------------------------------------- 1 | 7b261c3070a5af968ee5872e8c06febb6a9f094efd011196f856803d9a7f236c -------------------------------------------------------------------------------- /PluginDirectories/1/gif.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | gif ~query(animated gif) 2 | animate ~query(animated gif) 3 | animate me ~query(animated gif) 4 | ~query(animated gif) animation -------------------------------------------------------------------------------- /PluginDirectories/1/gif.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "\"{0}\" GIFs (Press cmd + c to copy link)": "\"{0}\" GIFs (Drücke cmd + c um den Link zu kopieren)" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/giphy.bundle/1.version: -------------------------------------------------------------------------------- 1 | 0efbaaec2f547fec32f4866ef455c184c2d555ec98dff0823e4a932e09d170b1 -------------------------------------------------------------------------------- /PluginDirectories/1/giphy.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/giphy.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/giphy.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/giphy.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/giphy.bundle/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/giphy.bundle/logo.gif -------------------------------------------------------------------------------- /PluginDirectories/1/github-issue.bundle/1.version: -------------------------------------------------------------------------------- 1 | e18bcd28fd7a9c36a6788c0072ddf6386a54bb062d7963b18a66eef4a5c3110b -------------------------------------------------------------------------------- /PluginDirectories/1/github-issue.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/github-issue.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/github-issue.bundle/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/github-issue.bundle/Screenshot.jpg -------------------------------------------------------------------------------- /PluginDirectories/1/github-issue.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | ghi ~query(organisation/project title labels=bug) 2 | github issue ~query(project) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/github.bundle/2.version: -------------------------------------------------------------------------------- 1 | 0036cc24cd375586f4cfb80609af4188b273a1464d290c48a0b12475c8f78758 -------------------------------------------------------------------------------- /PluginDirectories/1/github.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/github.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/github.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | github ~githubquery(query here) 2 | gh ~githubquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/google-trends.bundle/1.version: -------------------------------------------------------------------------------- 1 | 7b69a7225a01458fcfb23d94e6dca5eb571f4b4ed56298307c4887f0e99cf81c -------------------------------------------------------------------------------- /PluginDirectories/1/google-trends.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/google-trends.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/google-trends.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | trends ~keyword(keywords,...) 2 | trend ~keyword(keywords,...) -------------------------------------------------------------------------------- /PluginDirectories/1/googledrive.bundle/2.version: -------------------------------------------------------------------------------- 1 | 12c2496cc2acb0d9df55e0b840c735cce444f1f536a710b8030dce858a1c0f65 -------------------------------------------------------------------------------- /PluginDirectories/1/googledrive.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/googledrive.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/googledrive.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/googledrive.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/googledrive.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | drive ~drivequery(query here) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/googleimages.bundle/2.version: -------------------------------------------------------------------------------- 1 | c74625dec6771c52bd2f2e2ee35b5c96f4ce1a26acc50337442085c07a44813e -------------------------------------------------------------------------------- /PluginDirectories/1/googleimages.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for '{1}'" : "Durchsuche {0} nach '{1}'" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/googlemaps.bundle/2.version: -------------------------------------------------------------------------------- 1 | 21e551591a9a96c1bf3075d84ee4348fec28c3995451eaae05a35a67c751f463 -------------------------------------------------------------------------------- /PluginDirectories/1/googlemaps.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/googlemaps.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/googlemaps.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/googlemaps.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/googlemaps.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for '{1}'" : "Durchsuche {0} nach '{1}'" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/googlescholar.bundle/2.version: -------------------------------------------------------------------------------- 1 | fef86457bc5451f9f84547655a848d60f6e9f8d75cc764f1a207c86e024d10b9 -------------------------------------------------------------------------------- /PluginDirectories/1/googlescholar.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | gs ~googlescholarquery(query here) 2 | search google scholar for ~googlescholarquery(query) articles -------------------------------------------------------------------------------- /PluginDirectories/1/googlesearch.bundle/2.version: -------------------------------------------------------------------------------- 1 | 38af2ced26662af75c00304397f9f4c03a361b2c7437b1dbaab967e849396110 -------------------------------------------------------------------------------- /PluginDirectories/1/googlesearch.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/googlesearch.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/googlesearch.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | google ~googlequery(a) 2 | g ~googlequery(a b) 3 | search google for ~googlequery(a b c) 4 | ~googlequery(a) search google 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/googlesearch.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for '{1}'" : "Durchsuche {0} nach '{1}'" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/googletranslate.bundle/2.version: -------------------------------------------------------------------------------- 1 | 37760b309ac8faac4a5d1b7fce927cacfe355e1a458da1e0eb31b21bee80e1be -------------------------------------------------------------------------------- /PluginDirectories/1/googletranslate.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/googletranslate.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/googletranslate.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | gtr enru ~text(this is a text) 2 | gtr ruen ~text(this is a text) 3 | gtr enes ~text(this is a text) 4 | gtr rues ~text(this is a text) -------------------------------------------------------------------------------- /PluginDirectories/1/hackernews.bundle/1.version: -------------------------------------------------------------------------------- 1 | a248015d626895f36bf180c9060521aa2b285e1bdfe842d1f00297606909518f -------------------------------------------------------------------------------- /PluginDirectories/1/hackernews.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/hackernews.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/hackernews.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | hackernews ~message(dropbox) 2 | hn ~message(airbnb) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/haomatong.bundle/1.version: -------------------------------------------------------------------------------- 1 | 3917314b9fed8752b091927aaef184204137e34d23fc901dfcfead083aa04e04 -------------------------------------------------------------------------------- /PluginDirectories/1/haomatong.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/haomatong.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/haomatong.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | hmt number(10086) 2 | haomatong number(10086) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/hexCalc.bundle/1.version: -------------------------------------------------------------------------------- 1 | 5485de58f7dec7ff4e57f02b9a4e2743a812b04fefa9db7b008d4825a66eba35 -------------------------------------------------------------------------------- /PluginDirectories/1/hexCalc.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/hexCalc.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/hexCalc.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | hex ~message(0xAC) 2 | hex ~message(0xac) 3 | hex ~message(0x000ac) 4 | hex ~message(0x000100ac) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/hiddenfiles.bundle/1.version: -------------------------------------------------------------------------------- 1 | 4deb8894cfb217d1d8b2943c2c96713f20a9217d1f234f4687eb3efa0b971b70 -------------------------------------------------------------------------------- /PluginDirectories/1/hiddenfiles.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/hiddenfiles.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/hiddenfiles.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | hidden files ~message(show) 2 | ~message(hide) hidden files 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/hide-desktop-icons.bundle/1.version: -------------------------------------------------------------------------------- 1 | 01412844f05dacf677e86db503e93772c7b72160755d0f65a17f0a66fde01d2c -------------------------------------------------------------------------------- /PluginDirectories/1/hide-desktop-icons.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/hide-desktop-icons.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/hide-desktop-icons.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | show(show desktop icons) 2 | show(restore desktop icons) 3 | hide(hide desktop icons) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/hipchat.bundle/1.version: -------------------------------------------------------------------------------- 1 | d734c09ac8243cb56c934bf2c39454d5b10c01359b693bb8d5685442b3fd7046 -------------------------------------------------------------------------------- /PluginDirectories/1/hipchat.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/hipchat.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/hipchat.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/hipchat.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/hipchat.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | hipchat ~user(simon), ~message(hello world) 2 | hc ~user(simon), ~message(hello world) -------------------------------------------------------------------------------- /PluginDirectories/1/hipchat.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /PluginDirectories/1/hoogle.bundle/2.version: -------------------------------------------------------------------------------- 1 | 909cfef8c012ec8ad93f7088536e25aab2b698789da2d7d77da5b8c78365167b -------------------------------------------------------------------------------- /PluginDirectories/1/hoogle.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/hoogle.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/hoogle.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | hoogle ~hooglequery(query here) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/hummingbird.bundle/3.version: -------------------------------------------------------------------------------- 1 | d86ebbf8df0bc2b9a919e801f03fa3d21f03a2dc3d4a50d879d03d8541c5125c -------------------------------------------------------------------------------- /PluginDirectories/1/hummingbird.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/hummingbird.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/hummingbird.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | hummingbird ~hbquery(bebop) 2 | hb ~hbquery(bebop) -------------------------------------------------------------------------------- /PluginDirectories/1/hummingbird.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | "filter" : "" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/idealo.bundle/1.version: -------------------------------------------------------------------------------- 1 | 572bea29af01b930de9deb3e8a94a5517405ea6f030584ccd2359dd99e245a7b -------------------------------------------------------------------------------- /PluginDirectories/1/idealo.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/idealo.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/idealo.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/idealo.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/idealo.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | idealo ~idealoquery(query here) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/im-feeling-lucky.bundle/2.version: -------------------------------------------------------------------------------- 1 | 88da3ef630ca3592faaabb8fa864c42e9bd33fdbc9b2048b59faab062f0036b0 -------------------------------------------------------------------------------- /PluginDirectories/1/im-feeling-lucky.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | i'm feeling lucky ~iflquery(facebook) 2 | ifl ~iflquery(hacker news) 3 | ~iflquery(hacker news) ifl 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/imdb.bundle/1.version: -------------------------------------------------------------------------------- 1 | 0b92fafe093cca8397a004e55cd3dfbdb88f2e8740ed363d9d6777265aac5702 -------------------------------------------------------------------------------- /PluginDirectories/1/imdb.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | imdb ~imdbquery(query here) 2 | search imdb for ~imdbquery(no country for old men) 3 | i ~imdbquery(query here) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/imessage.bundle/2.version: -------------------------------------------------------------------------------- 1 | 7a843b7797a6d5806a9e4a9e9619aff758894b1a767566ff40ca4e43c6cf7dc0 -------------------------------------------------------------------------------- /PluginDirectories/1/imessage.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/imessage.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/imessage.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/imessage.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/imessage.bundle/paper-clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/imessage.bundle/paper-clip.png -------------------------------------------------------------------------------- /PluginDirectories/1/ipinfo.bundle/1.version: -------------------------------------------------------------------------------- 1 | aca07d12f6b97f1bd989dca878bfbac7ac8c406954dfe85a8f22a2d7301adc00 -------------------------------------------------------------------------------- /PluginDirectories/1/ipinfo.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | ipinfo ip(8.8.8.8) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/ipuseragent.bundle/2.version: -------------------------------------------------------------------------------- 1 | d909c067f76fe97cc1675e9b30dfc5e25ff62e74f23020b3a9bacd521ded7fbd -------------------------------------------------------------------------------- /PluginDirectories/1/ipuseragent.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | useragent 2 | ip 3 | my ip 4 | what is my ip 5 | my useragent 6 | what is my useragent -------------------------------------------------------------------------------- /PluginDirectories/1/ipuseragent.bundle/examples_de.txt: -------------------------------------------------------------------------------- 1 | useragent 2 | ip 3 | meine ip 4 | was ist meine ip 5 | mein useragent 6 | was ist mein useragent useragent -------------------------------------------------------------------------------- /PluginDirectories/1/isitup.bundle/1.version: -------------------------------------------------------------------------------- 1 | f6456ec2f72e2bdb3355074875178ce1e27b6054c0eab551ce270d7ace101f2d -------------------------------------------------------------------------------- /PluginDirectories/1/isitup.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/isitup.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/isitup.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/isitup.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/isitup.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | Up ~site(google.com) 2 | Down ~site(wikipedia.org) 3 | Is ~site(synapse.cx) up? 4 | Is ~site(duckduckgo.com) down 5 | 6 | 7 | -------------------------------------------------------------------------------- /PluginDirectories/1/iterm.bundle/1.version: -------------------------------------------------------------------------------- 1 | 808b6cf5189be2d2e11615070d2b8ae6223cfbbd91d749cd27c973e1e3771827 -------------------------------------------------------------------------------- /PluginDirectories/1/iterm.bundle/Screeshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/iterm.bundle/Screeshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/iterm.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | iterm 2 | iterm ~query(path) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/iterm.bundle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/iterm.bundle/icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/jd.bundle/2.version: -------------------------------------------------------------------------------- 1 | c4bdbb6abe2993ec294f1e7273d2eb3b4fd3e3f574af8bc6a3abf2e06d8ad78f -------------------------------------------------------------------------------- /PluginDirectories/1/jd.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | jd ~jdquery(query here) 2 | j ~jdquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/jira.bundle/2.version: -------------------------------------------------------------------------------- 1 | f27f867e0ab93eba0d19ef488f01555e7655875c99f25a0472da1da539a5a947 -------------------------------------------------------------------------------- /PluginDirectories/1/jira.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/jira.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/jira.bundle/README.markdown: -------------------------------------------------------------------------------- 1 | This plugin searches an Atlassian Jira Instance. 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/jira.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/jira.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/jira.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | jira ~query(query here) 2 | jira ~query(query here) in ~project(project here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/jira.bundle/examples_de.txt: -------------------------------------------------------------------------------- 1 | jira ~query(query here) 2 | jira ~query(query here) in ~project(project here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/jira.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | "password" : "", 3 | "user" : "firstname.lastname@westernacher.com", 4 | "host" : "https:\/\/jira.westernacher.com" 5 | } 6 | -------------------------------------------------------------------------------- /PluginDirectories/1/jira.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for '{1}'" : "Durchsuche {0} nach '{1}'" 3 | } 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/jisho.bundle/1.version: -------------------------------------------------------------------------------- 1 | 259315c3758454198b66fb0ee78013bd7f4e009ea7786c53f795ddb9649bdadb -------------------------------------------------------------------------------- /PluginDirectories/1/jisho.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/jisho.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/jisho.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | jisho ~jishoquery(query here) 2 | 辞書 ~jishoquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/js.bundle/2.version: -------------------------------------------------------------------------------- 1 | 79b27035882064ada547518cd2e01eae131d6c184e367a45f8e5ee01fe046cc2 -------------------------------------------------------------------------------- /PluginDirectories/1/js.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/js.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/js.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/js.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/js.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | js ~js(a) 2 | eval ~js(a) 3 | e ~js(a) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/js.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | "theme" : "googlecode" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/kill.bundle/1.version: -------------------------------------------------------------------------------- 1 | 81582f3f1243d32422e77f7bd269ff9e957ac7a8b5395302c7f6027022924ddf -------------------------------------------------------------------------------- /PluginDirectories/1/kill.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | kill ~app(Atom) 2 | kill ~app(Safari) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/kill9.bundle/2.version: -------------------------------------------------------------------------------- 1 | 777550709060f8aab1d2d88d85cbc34d4dd12a9bc6328245911e1869b101fcc1 -------------------------------------------------------------------------------- /PluginDirectories/1/kill9.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | kill ~process(Process Name) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/kill9.bundle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/kill9.bundle/icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/kuaidi.bundle/1.version: -------------------------------------------------------------------------------- 1 | 3811088e32ae752dfdea615b281c988e4e302f1c28d807147c1006067bba8f1f -------------------------------------------------------------------------------- /PluginDirectories/1/kuaidi.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/kuaidi.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/kuaidi.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | kuaidi number(100033892580) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/largetext.bundle/2.version: -------------------------------------------------------------------------------- 1 | 777ff7902accf258f9a42127b01a6c663a5e9c8586c6f1048b7c74440f2f6b76 -------------------------------------------------------------------------------- /PluginDirectories/1/largetext.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/largetext.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/largetext.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/largetext.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/largetext.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | large text: ~text(hello, world) 2 | show ~text(718 123 4567) in large text 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/largetext.bundle/examples_de.txt: -------------------------------------------------------------------------------- 1 | großer text: ~text(hello, world) 2 | zeige ~text(718 123 4567) in groß 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/largetext.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Large Text": "Großer Text", 3 | "Press enter to show full-screen": "Drücke Enter um den Text im Vollbild anzuzeigen" 4 | } -------------------------------------------------------------------------------- /PluginDirectories/1/lastfm.bundle/1.version: -------------------------------------------------------------------------------- 1 | 2170ea47044886d4e61685ddef5b13e7013811b422b625ab4730e608b0ec1917 -------------------------------------------------------------------------------- /PluginDirectories/1/lastfm.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/lastfm.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/lastfm.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | lastfm ~lastfmquery(query here) 2 | lfm ~lastfmquery(query here) -------------------------------------------------------------------------------- /PluginDirectories/1/lenny.bundle/4.version: -------------------------------------------------------------------------------- 1 | 3a716b2fb11ef39abbc36495a34c57146af27b93f78bf98fa4ea35142a6eacdf -------------------------------------------------------------------------------- /PluginDirectories/1/lenny.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/lenny.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/lenny.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | allfaces(lenny) -------------------------------------------------------------------------------- /PluginDirectories/1/leo.bundle/3.version: -------------------------------------------------------------------------------- 1 | 69a41df6658892310f3ed04b6e82898c2a1affdfad1b5b08e9aca853f7cb4eb8 -------------------------------------------------------------------------------- /PluginDirectories/1/leo.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/leo.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/leo.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | leo ~text(this is a text) -------------------------------------------------------------------------------- /PluginDirectories/1/leo.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | "lang" : "en" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/leo.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Look up '{0}' at Leo.org": "Suche nach '{0}' bei Leo.org" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/lipsum.bundle/2.version: -------------------------------------------------------------------------------- 1 | 4b3dadbf48cc7791dadf5fe102af2d8da3042d9af27b68e63aa38bb38ee2131b -------------------------------------------------------------------------------- /PluginDirectories/1/lipsum.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/lipsum.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/lipsum.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/lipsum.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/lipsum.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | lipsum ~query(5 words) 2 | ~query(10 paragraphs) of lorem ipsum 3 | lorem ipsum ~query(1 word) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/macupdate.bundle/1.version: -------------------------------------------------------------------------------- 1 | 546ae945b80d7a40483dafb447104ffaf9e09099f7456c4db8d54d931c29f811 -------------------------------------------------------------------------------- /PluginDirectories/1/macupdate.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/macupdate.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/macupdate.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | macupdate ~macupdatequery(query here) 2 | mu ~macupdatequery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/man.bundle/1.version: -------------------------------------------------------------------------------- 1 | 83b583a4e1d289ccf4f68ade03d21d12f4d76166e4950c7b0ca38d0c37e7474c -------------------------------------------------------------------------------- /PluginDirectories/1/man.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | man ~manquery(query here) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/man.bundle/examples_fr.txt: -------------------------------------------------------------------------------- 1 | man ~manquery(query here) 2 | rtfm ~manquery(query here) -------------------------------------------------------------------------------- /PluginDirectories/1/mate.bundle/1.version: -------------------------------------------------------------------------------- 1 | a1b35cc6aa745b8100465602c84e7746896d8a05541d3c17295e09058d4b5530 -------------------------------------------------------------------------------- /PluginDirectories/1/mate.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | mate 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/mdn.bundle/1.version: -------------------------------------------------------------------------------- 1 | 1316bf4b9e7a65237cd32defc907ca00f7578ef00f4b385b1ead5bf11f3c21c3 -------------------------------------------------------------------------------- /PluginDirectories/1/mdn.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/mdn.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/mdn.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | mdn ~mdnquery(query here) 2 | Mozilla developer Network ~mdnquery(query here) -------------------------------------------------------------------------------- /PluginDirectories/1/month.bundle/1.version: -------------------------------------------------------------------------------- 1 | e4395f89eacc3c5f8009d868e973edbfa7e1a45c3bc0d20cf9168d1a4b1246f3 -------------------------------------------------------------------------------- /PluginDirectories/1/month.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/month.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/month.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/month.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/move-file.bundle/2.version: -------------------------------------------------------------------------------- 1 | 6d86a83551ddd854383015482b2f7d8b40d0549660865c4e69c2c69bee623132 -------------------------------------------------------------------------------- /PluginDirectories/1/move-file.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/move-file.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/move-file.bundle/Images/File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/move-file.bundle/Images/File.png -------------------------------------------------------------------------------- /PluginDirectories/1/move-file.bundle/Images/Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/move-file.bundle/Images/Folder.png -------------------------------------------------------------------------------- /PluginDirectories/1/move-file.bundle/Images/Trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/move-file.bundle/Images/Trash.png -------------------------------------------------------------------------------- /PluginDirectories/1/move-file.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/move-file.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/namuwiki.bundle/1.version: -------------------------------------------------------------------------------- 1 | 181136ba0231a4fd2cce2956ff6cb7c5f9be67c429caf09f4c74e25574312c43 -------------------------------------------------------------------------------- /PluginDirectories/1/namuwiki.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/namuwiki.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/namuwiki.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | namu ~namuquery(나무위키) 2 | namuwiki ~namuquery(서울 특별시) 3 | search namuwiki for ~namuquery(한자/BMP) 4 | 나무위키 ~namuquery(고양이) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/netflix.bundle/1.version: -------------------------------------------------------------------------------- 1 | 0a8d264be56cdf25883ad22d7ae0983998faf12706d29ece1b5b7809aa1a227c -------------------------------------------------------------------------------- /PluginDirectories/1/netflix.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | netflix ~netflixquery(query here) 2 | n ~netflixquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/ninetan.bundle/2.version: -------------------------------------------------------------------------------- 1 | 72e792c424fc3dccea304d5e99f0fa4729dbcfd00e7d65af3a46922f2fcb8677 -------------------------------------------------------------------------------- /PluginDirectories/1/ninetan.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | sx9 2 | ninetan 3 | sx9 ~location(kyoto) 4 | ninetan ~location(osaka) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/ninetan.bundle/examples_ja.txt: -------------------------------------------------------------------------------- 1 | sx9 2 | ninetan 3 | ないんたん 4 | sx9 ~location(kyoto) 5 | ninetan ~location(osaka) 6 | ないんたん ~location(京都) 7 | -------------------------------------------------------------------------------- /PluginDirectories/1/notes.bundle/1.version: -------------------------------------------------------------------------------- 1 | f43acb027ff1e6f3c0f7d0aadb659fac1b3680c66601029d2919fbced2bf7b50 -------------------------------------------------------------------------------- /PluginDirectories/1/notes.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/notes.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/notes.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/notes.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/notes.bundle/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/notes.bundle/background.png -------------------------------------------------------------------------------- /PluginDirectories/1/notes.bundle/counterexamples.txt: -------------------------------------------------------------------------------- 1 | notes 2 | note -------------------------------------------------------------------------------- /PluginDirectories/1/npm.bundle/2.version: -------------------------------------------------------------------------------- 1 | c264e2cd4cbb52b47a2a6de0482f89c561b4e9d40e647907ee7e071282f82566 -------------------------------------------------------------------------------- /PluginDirectories/1/npm.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/npm.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/npm.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/npm.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/npm.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | npm ~npmquery(a) 2 | search npm for ~npmquery(a) 3 | ~npmquery(a) on npm 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/nyaa.bundle/3.version: -------------------------------------------------------------------------------- 1 | da2364973bf6975d0d2f7c258e840231e976ae670b4861026b4185eeef99ef87 -------------------------------------------------------------------------------- /PluginDirectories/1/nyaa.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/nyaa.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/nyaa.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | search nyaa for ~nyaaquery(bebop) 2 | nyaa ~nyaaquery(bebop) -------------------------------------------------------------------------------- /PluginDirectories/1/nyaa.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | "cat" : "0_0", 3 | "filter" : "0", 4 | "mod" : "" 5 | } -------------------------------------------------------------------------------- /PluginDirectories/1/omnifocus.bundle/1.version: -------------------------------------------------------------------------------- 1 | 2b48ea56a5d4ce2796d49f3b78b659e680d1c9ff40dcb8ffdd7d9bbb27aa8671 -------------------------------------------------------------------------------- /PluginDirectories/1/omnifocus.bundle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/omnifocus.bundle/icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/open-url.bundle/3.version: -------------------------------------------------------------------------------- 1 | 04b4c11cced9671692a41c5f1441b942cb260478af0818e61051783fcb1c56a3 -------------------------------------------------------------------------------- /PluginDirectories/1/open-url.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/open-url.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/open-url.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/open-url.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/open-url.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | !always_invoke 2 | open ~url(google.com) 3 | launch ~url(google.com) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/php.bundle/1.version: -------------------------------------------------------------------------------- 1 | 178fb6db453e529399a6489496c1b3de69f65850c5818d150a96d43b63cfe4d6 -------------------------------------------------------------------------------- /PluginDirectories/1/php.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/php.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/php.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | php ~php_query(urlencode) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/php.bundle/examples_fr.txt: -------------------------------------------------------------------------------- 1 | php ~php_query(urlencode) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/piglatin.bundle/1.version: -------------------------------------------------------------------------------- 1 | 0873f4faa37d384e185d04eb01b2d827e2a9a646cd709b1e64af5cf1cacdcacc -------------------------------------------------------------------------------- /PluginDirectories/1/piglatin.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | translate ~text(hello world) into pig latin 2 | piglatin ~text(hey there) 3 | pig latin ~text(yum) 4 | how do I say ~text(what's up) in pig latin? 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/pypi.bundle/2.version: -------------------------------------------------------------------------------- 1 | bdab9b8a714207c03ee55ca69b4d4de2abfb773b415af4dbc0efb03219b9ede8 -------------------------------------------------------------------------------- /PluginDirectories/1/pypi.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/pypi.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/pypi.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | pypi ~query(setuptools) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/qiita.bundle/1.version: -------------------------------------------------------------------------------- 1 | 0ad441701ba72061eea895ae3e4e6b06a802621615a23254831d98e86f1d7da1 -------------------------------------------------------------------------------- /PluginDirectories/1/qiita.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/qiita.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/qiita.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | qiita ~qiitaquery(query here) -------------------------------------------------------------------------------- /PluginDirectories/1/qr-googlechart.bundle/1.version: -------------------------------------------------------------------------------- 1 | cea2aa683683129b50e87cd5a651f7eb6face1d35d5f6327ae3291bc2a5218dd -------------------------------------------------------------------------------- /PluginDirectories/1/qr-googlechart.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/qr-googlechart.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/qr-googlechart.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | qr ~text(Good Morning) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/quicksearch.bundle/2.version: -------------------------------------------------------------------------------- 1 | 48f0ead0da149f8f49dbdb2e8581ec8fe3c02089b123b5f890ddb11b8517efeb -------------------------------------------------------------------------------- /PluginDirectories/1/quicksearch.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/quicksearch.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/randomimage.bundle/2.version: -------------------------------------------------------------------------------- 1 | dad9a4aff5659e8d0a4e0cd475c3dba8f5fdff9d13a389ac9bdcf166b4cdc513 -------------------------------------------------------------------------------- /PluginDirectories/1/randomimage.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | image ~query(random image) 2 | image me ~query(random image) 3 | random image ~query(random image) -------------------------------------------------------------------------------- /PluginDirectories/1/randomimage.bundle/examples_de.txt: -------------------------------------------------------------------------------- 1 | bild ~query(random image) 2 | zufallsbild ~query(random image) -------------------------------------------------------------------------------- /PluginDirectories/1/randomimage.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "\"{0}\" Random Image (Press cmd + c to copy link)": "\"{0}\" Zufallsbild (CMD + C um Link zu kopieren)" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/reaction-gifs.bundle/2.version: -------------------------------------------------------------------------------- 1 | 564c5dbbccf76b51359e491983037dea28f72e0722e670e705c693729e004876 -------------------------------------------------------------------------------- /PluginDirectories/1/reaction-gifs.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/reaction-gifs.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/reaction-gifs.bundle/README.md: -------------------------------------------------------------------------------- 1 | ### Ideas 2 | 3 | Nothing yet... -------------------------------------------------------------------------------- /PluginDirectories/1/reaction-gifs.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | reaction gifs for ~query(happy) 2 | ~query(happy) reaction gifs 3 | rgifs for ~query(happy) -------------------------------------------------------------------------------- /PluginDirectories/1/reddit.bundle/1.version: -------------------------------------------------------------------------------- 1 | 3187527e1e06527f45c8a9a5a753f3e86163f503048d3c4ea7fa0c158770d155 -------------------------------------------------------------------------------- /PluginDirectories/1/reddit.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | reddit ~redditquery(query here) 2 | rdt ~redditquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/remind-me.bundle/5.version: -------------------------------------------------------------------------------- 1 | 1481ada6a0234441ff38f45af80bf64a9f389110722f3f242753d8e0002b1c9e -------------------------------------------------------------------------------- /PluginDirectories/1/remind-me.bundle/EventKitUtility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/remind-me.bundle/EventKitUtility -------------------------------------------------------------------------------- /PluginDirectories/1/remind-me.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/remind-me.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/reveal-in-finder.bundle/1.version: -------------------------------------------------------------------------------- 1 | 553f7115fb02da89e84769ba1dd478eff65a1d862af7480eda883e99a08fbafd -------------------------------------------------------------------------------- /PluginDirectories/1/reveal-in-finder.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/reveal-in-finder.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/reveal-in-finder.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | reveal @file(...) 2 | show @file(...) in finder 3 | @file(...) reveal in finder 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/romsearch.bundle/2.version: -------------------------------------------------------------------------------- 1 | 8026ce97893100a4a8e66c35cf2692207e384efedd3f6e1baa4e1c75345453d4 -------------------------------------------------------------------------------- /PluginDirectories/1/romsearch.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/romsearch.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/romsearch.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/romsearch.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/royaltsx.bundle/2.version: -------------------------------------------------------------------------------- 1 | 82937bf16c2c251e3c3a679f8d7ff04e44e11dabdf736b09a16e4412018fb54f -------------------------------------------------------------------------------- /PluginDirectories/1/royaltsx.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/royaltsx.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/royaltsx.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | royaltsx ~hostname(Hostname) 2 | rtsx ~hostname(Hostname) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/rubygems.bundle/1.version: -------------------------------------------------------------------------------- 1 | 21c295c83f3de814ae9645c3e95b122b4e6bf2ba3cb7521234925254d19a5ab5 -------------------------------------------------------------------------------- /PluginDirectories/1/rubygems.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/rubygems.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/rubygems.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | gem ~query(query here) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/say.bundle/1.version: -------------------------------------------------------------------------------- 1 | 497377723d36baa72be0d89e200ec57cca81e1d898bc739ef0358c3b27b655cf -------------------------------------------------------------------------------- /PluginDirectories/1/say.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | say ~message(Good Morning) 2 | speak ~message(Hello, world) 3 | please speak ~message(what's up) out loud 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/say.bundle/examples_de.txt: -------------------------------------------------------------------------------- 1 | Sage ~message(Guten Morgen) 2 | Sag ~message(Hallo, Welt) 3 | Spreche ~message(Hallo, Welt) 4 | Bitte sage ~message(Was geht) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/say.bundle/examples_fr.txt: -------------------------------------------------------------------------------- 1 | dire ~message(Bonjour) 2 | dis ~message(Hello, world) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/send_email.bundle/4.version: -------------------------------------------------------------------------------- 1 | 691f797a093e8ed613b27f483ef4a94ab8325f6578f5e682af6512ed227aa6f3 -------------------------------------------------------------------------------- /PluginDirectories/1/send_email.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/send_email.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/send_email.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | "client" : "mail.app" 3 | } 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/shorten.bundle/1.version: -------------------------------------------------------------------------------- 1 | 6e538cbca151903b460caf3863465ab50c264c7e4e3d403975a8bf02224e1899 -------------------------------------------------------------------------------- /PluginDirectories/1/shorten.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | shorten ~url(http://google.com) 2 | short url ~url(http://google.com) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/shorten.bundle/examples_de.txt: -------------------------------------------------------------------------------- 1 | kürze ~url(http://google.com) 2 | kürze link ~url(http://google.com) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/shorten.bundle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/shorten.bundle/icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/showinfinder.bundle/1.version: -------------------------------------------------------------------------------- 1 | f729065d2216df32525c3596d1788dd6c61cae074ef354665fc4a1a8ff4e7303 -------------------------------------------------------------------------------- /PluginDirectories/1/showinfinder.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/showinfinder.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/showinfinder.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | finder ~path(query here) 2 | open ~path(query here) -------------------------------------------------------------------------------- /PluginDirectories/1/showinfinder.bundle/examples_de.txt: -------------------------------------------------------------------------------- 1 | finder ~path(query here) 2 | öffne ~path(query here) -------------------------------------------------------------------------------- /PluginDirectories/1/showinfinder.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open '{0}' in Finder": "Zeige '{0}' im Finder" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/showinfinder.bundle/strings_en.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open '{0}' in Finder": "Open '{0}' in Finder" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/shutdown.bundle/4.version: -------------------------------------------------------------------------------- 1 | ea2f12c5dd197519e6acbdd3317bb67ecd87e17ff4627c6ed2187fe5a3aadc9e -------------------------------------------------------------------------------- /PluginDirectories/1/shutdown.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/shutdown.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/shutdown.bundle/counterexamples.txt: -------------------------------------------------------------------------------- 1 | log 2 | off 3 | out 4 | screen 5 | saver 6 | down -------------------------------------------------------------------------------- /PluginDirectories/1/slack.bundle/4.version: -------------------------------------------------------------------------------- 1 | d1ab1ea0f8183196dd08fb60dec0d7cd27de26f39896d35a63fb223bb6fc5547 -------------------------------------------------------------------------------- /PluginDirectories/1/slack.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | slack ~channel(#random) ~message(Good Morning, Everyone) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/slack.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | "username" : "", 3 | "display_notifications" : 1, 4 | "token" : "" 5 | } 6 | -------------------------------------------------------------------------------- /PluginDirectories/1/speller.bundle/4.version: -------------------------------------------------------------------------------- 1 | 9a1c147c5592da423eba29e37fc800ee7afe673c7522e5dc0760ac52a6291603 -------------------------------------------------------------------------------- /PluginDirectories/1/speller.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/speller.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/speller.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/speller.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/speller.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | spell ~word(throuh) 2 | check spelling for ~word(wieght) 3 | please spell ~word(carosle) 4 | how do I spell ~word(reoger) ? 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/speller.bundle/examples_nl.txt: -------------------------------------------------------------------------------- 1 | spelling ~word(door) 2 | spel ~word(carosle) 3 | Controleer spelling voor ~word(gewight) 4 | spelling ~word(carosle) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/speller.bundle/template_listitem.html: -------------------------------------------------------------------------------- 1 |
  • #GUESS#

  • -------------------------------------------------------------------------------- /PluginDirectories/1/spotify+.bundle/1.version: -------------------------------------------------------------------------------- 1 | 1a878975501d5a2059782510b0b796978e08447491e7e4261f505775b3db7e07 -------------------------------------------------------------------------------- /PluginDirectories/1/spotify+.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | stream ~t(album) called ~q(you're dead!) 2 | stream ~t(song) called ~q(heartless) -------------------------------------------------------------------------------- /PluginDirectories/1/spotify+.bundle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/spotify+.bundle/icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/spotify.bundle/1.version: -------------------------------------------------------------------------------- 1 | 9fc4e3450be4917432603926287d170d54d616f79c5da59f8dd145a70b871d57 -------------------------------------------------------------------------------- /PluginDirectories/1/spotify.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/spotify.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/spotify.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | spotify ~search(Michael Jackson) 2 | spt ~search(Thriller) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/stackoverflow.bundle/1.version: -------------------------------------------------------------------------------- 1 | 47c8e9728082b5181546c7b18a3c491d7acf835d34e469561d5e63d857ec41da -------------------------------------------------------------------------------- /PluginDirectories/1/stackoverflow.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | stackoverflow ~soquery(query here) 2 | so ~soquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/stocks.bundle/1.version: -------------------------------------------------------------------------------- 1 | 5f1767312f30aa96990dd1102bc7caabc18caabf17871ed00f92210162aa89a5 -------------------------------------------------------------------------------- /PluginDirectories/1/stocks.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | stock ~stockquery(stock symbol here) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/stocks.bundle/examples_de.txt: -------------------------------------------------------------------------------- 1 | Aktie ~stockquery(stock symbol here) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/stocks.bundle/examples_fr.txt: -------------------------------------------------------------------------------- 1 | bourse ~stockquery(Nom de l'action) -------------------------------------------------------------------------------- /PluginDirectories/1/sublime.bundle/3.version: -------------------------------------------------------------------------------- 1 | e05837d8c8c02d3db3f220d403c49bcf29601cfa93f0fa045adaf3d618d314e4 -------------------------------------------------------------------------------- /PluginDirectories/1/sublime.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/sublime.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/sublime.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/sublime.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/sublime.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | subl ~query(path) 2 | sublime ~query(path) 3 | open with sublime ~query(path) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/sublime.bundle/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/sublime.bundle/folder.png -------------------------------------------------------------------------------- /PluginDirectories/1/subreddit.bundle/2.version: -------------------------------------------------------------------------------- 1 | 56ef86fe50d88b7f571814816bbfcfc99b461e9cdbd7d9e2c79d76bce44e5004 -------------------------------------------------------------------------------- /PluginDirectories/1/subreddit.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/subreddit.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/subreddit.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | subr ~message(cfb) 2 | subreddit ~message(cfb) 3 | r / ~message(funny) -------------------------------------------------------------------------------- /PluginDirectories/1/taobao.bundle/1.version: -------------------------------------------------------------------------------- 1 | 8007ab874d5f82f16fc4924b7458aa1f447a603db96282b2f6dc53d0bd08e523 -------------------------------------------------------------------------------- /PluginDirectories/1/taobao.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | taobao ~taobaoquery(query here) 2 | t ~taobaoquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/teamviewer.bundle/1.version: -------------------------------------------------------------------------------- 1 | 99981ea63f488edca0f6c6e1608485731d951819f015296c356da8e472b8b5af -------------------------------------------------------------------------------- /PluginDirectories/1/teamviewer.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/teamviewer.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/teamviewer.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | teamviewer ~id(abc def ghi) 2 | teamviewer ~id(123 456 789), ~password(123 123 123) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/teamviewer.bundle/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/teamviewer.bundle/map.jpg -------------------------------------------------------------------------------- /PluginDirectories/1/terminal.bundle/2.version: -------------------------------------------------------------------------------- 1 | 839db8776439efd6cb49322bddcedf535522ffe2d0c2fc60b0163d8d4904d34f -------------------------------------------------------------------------------- /PluginDirectories/1/terminal.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | "app" : "terminal" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/thepiratebay.bundle/1.version: -------------------------------------------------------------------------------- 1 | 7ad2713ed3370c10563b9e1e7bd2340d1b0bcf95b50056386ba6b6733995edc8 -------------------------------------------------------------------------------- /PluginDirectories/1/thepiratebay.bundle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/thepiratebay.bundle/icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/thing.bundle/2.version: -------------------------------------------------------------------------------- 1 | 3ce37f4a9d9d9d88541239c5e8222579531b6b114504fb8b8aa284150167e6f5 -------------------------------------------------------------------------------- /PluginDirectories/1/thing.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/thing.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/thing.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | thing ~thingquery(query here) 2 | t ~thingquery(query here) -------------------------------------------------------------------------------- /PluginDirectories/1/ticktick.bundle/1.version: -------------------------------------------------------------------------------- 1 | d69d717919b5c86dbf32604ad5a507118080f04b10863ff95f68f44b8ce2464f -------------------------------------------------------------------------------- /PluginDirectories/1/ticktick.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | ticktick ~title(call Dad tomorrow) 2 | tk ~title(buy the milk) 3 | new task ~title(share story with Sam) -------------------------------------------------------------------------------- /PluginDirectories/1/ticktick.bundle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/ticktick.bundle/icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/ticktick.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /PluginDirectories/1/timer.bundle/1.version: -------------------------------------------------------------------------------- 1 | 4e567f88d66286eba132a238ab6370d9608f8565c7b7d4ea7088c2a924dc4cb2 -------------------------------------------------------------------------------- /PluginDirectories/1/timer.bundle/Icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/timer.bundle/Icon-dark.png -------------------------------------------------------------------------------- /PluginDirectories/1/timer.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/timer.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/timer.bundle/beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/timer.bundle/beep.wav -------------------------------------------------------------------------------- /PluginDirectories/1/timer.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | time ~time(5) 2 | timer ~time(5) 3 | timer ~time(5:10) -------------------------------------------------------------------------------- /PluginDirectories/1/timestamp.bundle/1.version: -------------------------------------------------------------------------------- 1 | c322bb1e8bb8f01863879b9c861a6e091e86e20eee89837c25286c1ad5cf66c5 -------------------------------------------------------------------------------- /PluginDirectories/1/timestamp.bundle/examples_fr.txt: -------------------------------------------------------------------------------- 1 | ts 2 | ts timestamp(1400000000) 3 | timestamp 4 | timestamp timestamp(1400000000) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/timezone.bundle/2.version: -------------------------------------------------------------------------------- 1 | 3e6c2343d9df7145f307c62f29ed462668576722926a4b0f550a0f5d5106f9d9 -------------------------------------------------------------------------------- /PluginDirectories/1/timezone.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/timezone.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/timezone.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | Time ~location(brooklyn) 2 | Timezone ~location(brooklyn) 3 | what time is it in ~location(shangai) -------------------------------------------------------------------------------- /PluginDirectories/1/timezone.bundle/examples_fr.txt: -------------------------------------------------------------------------------- 1 | heure ~location(brooklyn) 2 | Fuseau ~location(brooklyn) 3 | Quelle heure est-il à ~location(shangai) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/timezone.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Time in '{0}'": "Zeit in '{0}'" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/todoist.bundle/2.version: -------------------------------------------------------------------------------- 1 | 0737c13aac1611907382ed012068cb9163984c0c1a81c062e3315cf2edbc973c -------------------------------------------------------------------------------- /PluginDirectories/1/todoist.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | todoist ~task(do the dishes) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/todoist.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | "token" : "" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/torrent.bundle/2.version: -------------------------------------------------------------------------------- 1 | 60cb45c66ada87f925b18b8e052f6c3cdaed5b5a7513191871385fc8c1eaace9 -------------------------------------------------------------------------------- /PluginDirectories/1/torrent.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/torrent.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/torrentz.bundle/3.version: -------------------------------------------------------------------------------- 1 | f7417d9555e49a27540693aff9d649c6be618d9145c94cc0bda6223e187c8502 -------------------------------------------------------------------------------- /PluginDirectories/1/torrentz.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/torrentz.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/torrentz.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | search torrentz for ~message(godzilla) 2 | torrentz ~message(godzilla) -------------------------------------------------------------------------------- /PluginDirectories/1/trakt.bundle/1.version: -------------------------------------------------------------------------------- 1 | fe882ace0a327c4918bceb97bedd7d21affb562d3ce1b745e9e8438a9069845b -------------------------------------------------------------------------------- /PluginDirectories/1/trakt.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | trakt ~traktquery(query here) 2 | search trakt for ~traktquery(breaking bad) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/twitter.bundle/1.version: -------------------------------------------------------------------------------- 1 | 253116dbd209d8a107c7b2fc04fb4d828c44e992b9aac0073be74b270a7b47c5 -------------------------------------------------------------------------------- /PluginDirectories/1/twitter.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | twitter ~twitterquery(query here) 2 | tt ~twitterquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/tyda.bundle/1.version: -------------------------------------------------------------------------------- 1 | d8144250958de3f548bb5888e1df144c54c1aedbe9d481ff9e114697663e54c2 -------------------------------------------------------------------------------- /PluginDirectories/1/tyda.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/tyda.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/tyda.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | tyda ~tyda(query) -------------------------------------------------------------------------------- /PluginDirectories/1/tyme.bundle/3.version: -------------------------------------------------------------------------------- 1 | b6ae84e1bbe9247cd8afa46e0b421dde50b1e99231a176945fe2d02d9d52f240 -------------------------------------------------------------------------------- /PluginDirectories/1/tyme.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/tyme.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/unicode.bundle/4.version: -------------------------------------------------------------------------------- 1 | d8f432691e65827f957875d4a4895c77f6076c43896e270249fed9b6eabb46d6 -------------------------------------------------------------------------------- /PluginDirectories/1/unicode.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/unicode.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/unicode.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/unicode.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/unicode2chinese.bundle/1.version: -------------------------------------------------------------------------------- 1 | 724620390d8dc3cebb2046f9c67e0c194917d0ae4920d3572ca1e67959adecf3 -------------------------------------------------------------------------------- /PluginDirectories/1/unicode2chinese.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/unicode2chinese.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/unicode2chinese.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | u2c ~unicode(\u4f60\u597d) 2 | c2u ~chinese(你好, 世界) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/urbandictionary.bundle/1.version: -------------------------------------------------------------------------------- 1 | 6e915447bc1a59ba7242778ad6d7d4c2fe19d274aa5ef10365980555dc9ba494 -------------------------------------------------------------------------------- /PluginDirectories/1/urbandictionary.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | urbandictionary ~udquery(query here) 2 | ud ~udquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/uuid.bundle/1.version: -------------------------------------------------------------------------------- 1 | d2fc52bf03dfa5c9a1b4e45670ca18aa146eb8bb854ef961d7c0a438764c2d1b -------------------------------------------------------------------------------- /PluginDirectories/1/uuid.bundle/README.md: -------------------------------------------------------------------------------- 1 | # UUID Plugin for [Flashlight](http://flashlight.nateparrott.com/) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/uuid.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | uuid 2 | :uuid 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/uuid.bundle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/uuid.bundle/icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/v2ex.bundle/1.version: -------------------------------------------------------------------------------- 1 | cab8a89baa6dfe419f91d05fc6a007dd055f7e0dec7645cc802baeca2ef5f808 -------------------------------------------------------------------------------- /PluginDirectories/1/v2ex.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/v2ex.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/v2ex.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | v2ex -------------------------------------------------------------------------------- /PluginDirectories/1/vertaal.bundle/3.version: -------------------------------------------------------------------------------- 1 | ebe518d8caa3dc67c39388a3fc18a1a3011d8f565d05d319622e1c84452ec21a -------------------------------------------------------------------------------- /PluginDirectories/1/vertaal.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/vertaal.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/vertaal.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | vertaal ~vertaalquery(query here) 2 | v ~vertaalquery(query here) -------------------------------------------------------------------------------- /PluginDirectories/1/weather.bundle/8.version: -------------------------------------------------------------------------------- 1 | d55a72615a34e08b5d02b871b97f2a62273980266090c48a32064ec63995e2e1 -------------------------------------------------------------------------------- /PluginDirectories/1/weather.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/weather.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/weather.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/weather.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/weather.bundle/examples_fr.txt: -------------------------------------------------------------------------------- 1 | Quel est le climat à ~location(Brooklyn)? 2 | Météo pour ~location(Shangai) 3 | temps ~location(paris) 4 | temps ~location(paris) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/weather.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | "units" : "auto" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/weblio.bundle/1.version: -------------------------------------------------------------------------------- 1 | b6bfcba0b3e750ab51c00682de7895761c9c03296d6d8c81e15c680e7d944551 -------------------------------------------------------------------------------- /PluginDirectories/1/weblio.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/weblio.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/weblio.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/weblio.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/whenis.bundle/2.version: -------------------------------------------------------------------------------- 1 | 43cf3a0c407a4a06b27e3d697466b58a19bc0a9c6e105f64deb8e5a142f234e7 -------------------------------------------------------------------------------- /PluginDirectories/1/whenis.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/whenis.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/whoami.bundle/1.version: -------------------------------------------------------------------------------- 1 | 7ea87ce4ab78bf13e726ee58b4185662d0c09b4113a28cd79443512bec3072d3 -------------------------------------------------------------------------------- /PluginDirectories/1/whoami.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | who am i? 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/wikipedia.bundle/3.version: -------------------------------------------------------------------------------- 1 | 2b96b9619f8df040b36d4809311d78854bea7f96a14211c6fb693bb87b6f3f03 -------------------------------------------------------------------------------- /PluginDirectories/1/wikipedia.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/wikipedia.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/wikipedia.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | wiki ~enWiki(query here) 2 | wikipedia ~enWiki(query here) 3 | wiki ~enWiki(query here) 4 | search wikipedia for ~enWiki(query here) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/wikipedia.bundle/examples_de.txt: -------------------------------------------------------------------------------- 1 | wiki ~deWiki(query here) 2 | wikipedia ~deWiki(query here) 3 | wiki ~deWiki(query here) 4 | suche wikipedia nach ~deWiki(query here) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/wikipedia.bundle/examples_fr.txt: -------------------------------------------------------------------------------- 1 | wiki ~frWiki(query here) 2 | wikipedia ~frWiki(query here) 3 | wiki ~frWiki(query here) 4 | recherche wikipedia ~frWiki(query here) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/wikipedia.bundle/examples_it.txt: -------------------------------------------------------------------------------- 1 | wiki ~itWiki(query here) 2 | wikipedia ~itWiki(query here) 3 | wiki ~itWiki(query here) 4 | recherche wikipedia ~itWiki(query here) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/wikipedia.bundle/examples_ja.txt: -------------------------------------------------------------------------------- 1 | wiki ~jaWiki(query here) 2 | wikipedia ~jaWiki(query here) 3 | wiki ~jaWiki(query here) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/wikipedia.bundle/examples_nl.txt: -------------------------------------------------------------------------------- 1 | wiki ~nlWiki(query here) 2 | wikipedia ~nlWiki(query here) 3 | wiki ~nlWiki(query here) 4 | Zoek op wikipedia voor ~nlWiki(query here) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/wikipedia.bundle/examples_pl.txt: -------------------------------------------------------------------------------- 1 | wiki ~plWiki(query here) 2 | wikipedia ~plWiki(query here) 3 | wiki ~plWiki(query here) 4 | szukaj wikipedia ~plWiki(query here) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/wikipedia.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for '{1}'": "Suche auf {0} nach '{1}'" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/wikipedia.bundle/strings_ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for '{1}'": "{0} 検索 '{1}'" 3 | } 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/wikipedia.bundle/strings_nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for '{1}'": "Zoek op {0} voor '{1}'" 3 | } 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/wikipedia.bundle/strings_pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for '{1}'": "Szukaj w {0} '{1}'" 3 | } 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/wiktionary.bundle/1.version: -------------------------------------------------------------------------------- 1 | 9ff39ff0bae01b8163c123d93a361d13b20a4607d278ba8ee1679b8b73bcea8e -------------------------------------------------------------------------------- /PluginDirectories/1/wiktionary.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/wiktionary.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/wiktionary.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | wiktionary ~enWiki(query here) 2 | search wiktionary for ~enWiki(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/wiktionary.bundle/examples_de.txt: -------------------------------------------------------------------------------- 1 | wiktionary ~deWiki(query here) 2 | suche wiktionary nach ~deWiki(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/wiktionary.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for '{1}'": "Suche auf {0} nach '{1}'" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/wireless-toggles.bundle/3.version: -------------------------------------------------------------------------------- 1 | fa9644d5d9b0fec8a359e671003dae83ff0182bf97281ed6465ec50a346d1557 -------------------------------------------------------------------------------- /PluginDirectories/1/wordpress.bundle/1.version: -------------------------------------------------------------------------------- 1 | 51f940389168c1393f3ac5ec931a43191ad4c93f4737117cdb693b982d24dc47 -------------------------------------------------------------------------------- /PluginDirectories/1/wordpress.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/wordpress.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/wordpress.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | wp ~wp_func(the_content) 2 | wpf ~wp_func(the_content) 3 | wps ~wp_func(the_content) 4 | wordpress ~wp_func(the_content) 5 | -------------------------------------------------------------------------------- /PluginDirectories/1/wordreference.bundle/1.version: -------------------------------------------------------------------------------- 1 | e2b921760585383909d146346300ccdae28b7db4552046a609f418ad02ef0c41 -------------------------------------------------------------------------------- /PluginDirectories/1/wordreference.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/wordreference.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/wordreference.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | wr ~mode(enes) ~word(hello) 2 | wr ~mode(esen) ~word(hola) 3 | wr ~mode(enzh) ~word(dog) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/workingon.bundle/1.version: -------------------------------------------------------------------------------- 1 | 1947eab6eed6245b59eb09b84beaec972e42b0563decd4f6b21f8788002cf346 -------------------------------------------------------------------------------- /PluginDirectories/1/workingon.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | on ~message(meeting) 2 | won ~message(meeting) 3 | workingon ~message(meeting) 4 | working on ~message(meeting) -------------------------------------------------------------------------------- /PluginDirectories/1/workingon.bundle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/workingon.bundle/icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/workingon.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | "token" : "" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/xcode-shortcuts.bundle/2.version: -------------------------------------------------------------------------------- 1 | f9b640912bf73ff78296e466f9bd86da4a79d4f368b6b3dc05fc69113de684ff -------------------------------------------------------------------------------- /PluginDirectories/1/xcode-shortcuts.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/xcode-shortcuts.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/xcode-shortcuts.bundle/counterexamples.txt: -------------------------------------------------------------------------------- 1 | ios 2 | iphone 3 | open 4 | launch 5 | xcode 6 | -------------------------------------------------------------------------------- /PluginDirectories/1/yahoo.bundle/2.version: -------------------------------------------------------------------------------- 1 | 680ecc988d768fe822a3006b56765fe2ca14a43d476a20b6c304659a5e1f5411 -------------------------------------------------------------------------------- /PluginDirectories/1/yahoo.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | yahoo ~yahooquery(query here) 2 | yh ~yahooquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/yandex.bundle/1.version: -------------------------------------------------------------------------------- 1 | 530dc569fc5e80153494442b782a073d36e918c414a4c00709af1f824f3eac34 -------------------------------------------------------------------------------- /PluginDirectories/1/yandex.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | yandex ~yxquery(query here) 2 | yx ~yxquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/yandex.bundle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/yandex.bundle/icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/yelp.bundle/1.version: -------------------------------------------------------------------------------- 1 | 37f5ad5a09c2c2c91e13c17d1e90c45ccf770ac723de8fcf00eed5bf7242dbc5 -------------------------------------------------------------------------------- /PluginDirectories/1/yelp.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | yelp ~yelpquery(query here) 2 | search yelp for ~yelpquery(query here) 3 | find ~yelpquery(chinese takeout) on yelp 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/yelp.bundle/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "yelp", 3 | "displayName": "Yelp", 4 | "examples": ["yelp pizza"], 5 | "categories": ["Search"] 6 | } -------------------------------------------------------------------------------- /PluginDirectories/1/yesno.bundle/1.version: -------------------------------------------------------------------------------- 1 | 3f5753e883a3e2072430c3d56467bb482cfc1395d89c4e6768d2923fb773db70 -------------------------------------------------------------------------------- /PluginDirectories/1/yesno.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Yes or no?!": "Ja oder Nein?!" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/yhd.bundle/2.version: -------------------------------------------------------------------------------- 1 | a18c8fe36244d425a3618b67fe21d1bbf72a36e56b9942002a26d86923044178 -------------------------------------------------------------------------------- /PluginDirectories/1/yhd.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | yhd ~yhdquery(query here) 2 | y ~yhdquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/yixun.bundle/2.version: -------------------------------------------------------------------------------- 1 | 442cdd198c8958554aebbb2df6dbc75d8bcd0687d68baa3fe0c438fa2152ae9b -------------------------------------------------------------------------------- /PluginDirectories/1/yixun.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | yixun ~yixunquery(query here) 2 | yx ~yixunquery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/youdaodic.bundle/1.version: -------------------------------------------------------------------------------- 1 | 4e1db02fcc3c37be152543af7fc626c70e190c1e9a5fc2c0fd9fe1695fc17b1a -------------------------------------------------------------------------------- /PluginDirectories/1/youdaodic.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/youdaodic.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/youdaodic.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | yd ~string(hello world) 2 | youdao ~string(call me why) 3 | 有道 ~string(why) 4 | -------------------------------------------------------------------------------- /PluginDirectories/1/youtube.bundle/1.version: -------------------------------------------------------------------------------- 1 | ecbc04e1c3cc2fe9764169ac86f959b9ca57a07abdf0a84fdf5124de3c3e9dde -------------------------------------------------------------------------------- /PluginDirectories/1/youtube.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | youtube ~youtubequery(query here) 2 | yt ~youtubequery(query here) 3 | -------------------------------------------------------------------------------- /PluginDirectories/1/youtube.bundle/strings_de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Search {0} for '{1}'": "Durchsuche {0} nach '{1}'" 3 | } -------------------------------------------------------------------------------- /PluginDirectories/1/zalando.bundle/2.version: -------------------------------------------------------------------------------- 1 | e864c8acafcbcd140166c41736a9758ecb94a5858d10d31833756f0f59aefd00 -------------------------------------------------------------------------------- /PluginDirectories/1/zalando.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/zalando.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/zalando.bundle/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/zalando.bundle/Screenshot.png -------------------------------------------------------------------------------- /PluginDirectories/1/zalando.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | zalando ~zalandoquery(Puma shoe) 2 | -------------------------------------------------------------------------------- /PluginDirectories/1/zalando.bundle/preferences.json: -------------------------------------------------------------------------------- 1 | { 2 | "country" : "de", 3 | "sale" : 1, 4 | "category" : "catalog" 5 | } -------------------------------------------------------------------------------- /PluginDirectories/1/zeal.bundle/1.version: -------------------------------------------------------------------------------- 1 | 32d5f102ce3d7f7544d755548aa5e974577156293349ba08088280bc4218f690 -------------------------------------------------------------------------------- /PluginDirectories/1/zeal.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/zeal.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/zeal.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | zeal ~query(os.system) 2 | zeal ~query(os.system) in ~docset(python) -------------------------------------------------------------------------------- /PluginDirectories/1/zhihuDaily.bundle/1.version: -------------------------------------------------------------------------------- 1 | 070316255dd1a15136c49213ed1b24d5699e5f0c2c8453325a16bab7af027865 -------------------------------------------------------------------------------- /PluginDirectories/1/zhihuDaily.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/PluginDirectories/1/zhihuDaily.bundle/Icon.png -------------------------------------------------------------------------------- /PluginDirectories/1/zhihuDaily.bundle/examples.txt: -------------------------------------------------------------------------------- 1 | zhihu ~query(diary) 2 | -------------------------------------------------------------------------------- /flashlightplugins/bs4/tests/__init__.py: -------------------------------------------------------------------------------- 1 | "The beautifulsoup tests." 2 | -------------------------------------------------------------------------------- /flashlightplugins/cron.yaml: -------------------------------------------------------------------------------- 1 | cron: 2 | - description: update search ranks 3 | url: /__background_work/update_search_ranks 4 | schedule: every 6 hours 5 | -------------------------------------------------------------------------------- /flashlightplugins/requests/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import urllib3 4 | -------------------------------------------------------------------------------- /flashlightplugins/requests/packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | -------------------------------------------------------------------------------- /flashlightplugins/static/images/Icon-Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/Icon-Large.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/Icon-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/Icon-inverted.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/Icon.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/email.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/favicon.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/giphy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/giphy.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/google.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/images.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/imessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/imessage.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/large/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/large/email.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/large/giphy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/large/giphy.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/large/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/large/google.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/large/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/large/images.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/large/imessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/large/imessage.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/large/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/large/note.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/large/ping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/large/ping.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/large/reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/large/reminder.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/large/translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/large/translate.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/large/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/large/weather.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/large/wolfram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/large/wolfram.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/note.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/ping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/ping.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/reminder.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/translate.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/weather.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/whatif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/whatif.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/wolfram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/wolfram.png -------------------------------------------------------------------------------- /flashlightplugins/static/images/yosemite-small2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/images/yosemite-small2.jpg -------------------------------------------------------------------------------- /flashlightplugins/static/preview/Flashlight.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightplugins/static/preview/Flashlight.zip -------------------------------------------------------------------------------- /flashlightsearchrelay/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nate-parrott/Flashlight/c3a7c7278a1cccf8918e7543faffc68e863ff5ab/flashlightsearchrelay/favicon.ico -------------------------------------------------------------------------------- /flashlightsearchrelay/requests/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import urllib3 4 | -------------------------------------------------------------------------------- /flashlightsearchrelay/requests/packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | -------------------------------------------------------------------------------- /flashlightsearchrelay/secret_config.py: -------------------------------------------------------------------------------- 1 | import json 2 | secret_config = json.loads(open('secret-config.json').read()) 3 | --------------------------------------------------------------------------------