Stumble Across
Bookmarking and content discovery on the blockchain
Was ist Stumble Across?
Stumble Across ist eine Chrome-Erweiterung, die von StumbleAcross entwickelt wurde, und ihr Hauptmerkmal ist "Bookmarking and content discovery on the blockchain".
Erweiterungsscreenshots
Stumble Across-Erweiterungs-CRX-Datei herunterladen
Laden Sie Stumble Across-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Stumble Across |
ID | olognjcjfiknpiblpbnmjgbehodclokg |
Offizielle URL | https://chromewebstore.google.com/detail/stumble-across/olognjcjfiknpiblpbnmjgbehodclokg |
Beschreibung | Bookmarking and content discovery on the blockchain |
Dateigröße | 125 KB |
Installationsanzahl | 13 |
Aktuelle Version | 0.3 |
Letztes Update | 2020-09-28 |
Veröffentlichungsdatum | 2020-09-15 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | StumbleAcross |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://stumbleacross.app |
URL der Datenschutzrichtlinien-Seite | https://stumbleacross.app/privacy.html |
Unterstützte Sprachen | 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:\/\/*\/*" ] } |