Stumble Across
Bookmarking and content discovery on the blockchain
What is Stumble Across?
Stumble Across is a Chrome extension developed by StumbleAcross, and its main feature is "Bookmarking and content discovery on the blockchain".
Extension Screenshots
Download Stumble Across Extension CRX File
Download Stumble Across 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
Bookmark cool webpages forever on the blockchain, click "Stumble" to discover random webpages bookmarked by other users. Get paid in bitcoin when other users like your content. This is a beta version, suggestions for improvements are welcome. After installing, you might need to pin the extension (as shown in the second screenshot) to be able to use it.
Extension Basic Information
Name | Stumble Across |
ID | olognjcjfiknpiblpbnmjgbehodclokg |
Official URL | https://chromewebstore.google.com/detail/stumble-across/olognjcjfiknpiblpbnmjgbehodclokg |
Description | Bookmarking and content discovery on the blockchain |
File Size | 125 KB |
Installation Count | 13 |
Current Version | 0.3 |
Last Updated | 2020-09-28 |
Publish Date | 2020-09-15 |
Rating | 5.00/5 Total 1 Ratings |
Developer | StumbleAcross |
[email protected] | |
Payment Type | free |
Extension Website | https://stumbleacross.app |
Privacy Policy Page URL | https://stumbleacross.app/privacy.html |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Stumble Across", "version": "0.3", "description": "Bookmarking and content discovery on the blockchain", "manifest_version": 2, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_title": "StumbleAcross on this page" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "web_accessible_resources": [ "modal.html", "popup.js" ], "content_scripts": [ { "matches": [ "https:\/\/*.stumbleacross.app\/*" ], "run_at": "document_end", "js": [ "stumbleacross.js" ] } ], "permissions": [ "activeTab", "storage", "https:\/\/*\/*", "http:\/\/*\/*" ] } |