Salty Finder
Saltybet database viewer.
What is Salty Finder?
Salty Finder is a Chrome extension developed by doomsday.wombats, and its main feature is "Saltybet database viewer.".
Extension Screenshots
Download Salty Finder Extension CRX File
Download Salty Finder 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
Shows win/lose stats for competitors on Saltybet from a free database. You must be logged in for these stats to show. Source code is available here: https://github.com/mrmoss/saltybet_tools_chrome_extension
Extension Basic Information
Name | |
ID | copocnlfmefhjhcpnciembhppkkaoagi |
Official URL | https://chromewebstore.google.com/detail/salty-finder/copocnlfmefhjhcpnciembhppkkaoagi |
Description | Saltybet database viewer. |
File Size | 61.35 KB |
Installation Count | 1,171 |
Current Version | 2019.5.8.1 |
Last Updated | 2024-01-28 |
Publish Date | 2019-05-08 |
Rating | 4.00/5 Total 9 Ratings |
Developer | doomsday.wombats |
[email protected] | |
Payment Type | free |
Extension Website | https://salty.imaprettykitty.com |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salty Finder", "short_name": "Salty Finder", "description": "Saltybet database viewer.", "version": "2019.5.8.1", "manifest_version": 2, "permissions": [ "http:\/\/mugen.saltybet.com\/", "https:\/\/mugen.saltybet.com\/", "http:\/\/www.saltybet.com\/", "https:\/\/www.saltybet.com\/", "https:\/\/salty.imaprettykitty.com\/" ], "background": { "scripts": [ "js\/xhr_proxy.js" ], "persistent": true }, "content_scripts": [ { "js": [ "js\/background.js" ], "matches": [ "http:\/\/mugen.saltybet.com\/", "https:\/\/mugen.saltybet.com\/", "http:\/\/www.saltybet.com\/", "https:\/\/www.saltybet.com\/" ], "run_at": "document_end" } ], "icons": { "16": "images\/favicon-16x16.png", "128": "images\/favicon-32x32.png" }, "externally_connectable": { "matches": [ "https:\/\/salty.imaprettykitty.com\/*" ] } } |