Splash search
Filter results by orientation, color, luminance
What is Splash search?
Splash search is a Chrome extension developed by alexander.sideris.west, and its main feature is "Filter results by orientation, color, luminance".
Extension Screenshots
Download Splash search Extension CRX File
Download Splash search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Filter Unsplash image results by orientation and luminance
Extension Basic Information
Name | Splash search |
ID | jfgcaogpmldinkaahahpfbcnkmdjfidh |
Official URL | https://chromewebstore.google.com/detail/splash-search/jfgcaogpmldinkaahahpfbcnkmdjfidh |
Description | Filter results by orientation, color, luminance |
File Size | 63.79 KB |
Installation Count | 222 |
Current Version | 1.0.0 |
Last Updated | 2019-09-16 |
Publish Date | 2019-09-15 |
Rating | 3.25/5 Total 4 Ratings |
Developer | alexander.sideris.west |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js", "jquery-3.3.1.min.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content_script.js" ], "matches": [ "*:\/\/*.unsplash.com\/*" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "images\/private.png", "default_title": "Splash search", "default_popup": "popup.html" }, "description": "Filter results by orientation, color, luminance", "icons": { "32": "images\/private.png", "48": "images\/private.png", "128": "images\/private.png" }, "manifest_version": 2, "name": "Splash search", "short_name": "Splash search", "permissions": [ "storage" ], "version": "1.0.0" } |