Stumble Across
Bookmarking and content discovery on the blockchain
Qu'est-ce que Stumble Across ?
Stumble Across est une extension Chrome développée par StumbleAcross, et sa fonction principale est "Bookmarking and content discovery on the blockchain".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Stumble Across
Téléchargez les fichiers d'extension Stumble Across au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Stumble Across |
ID | olognjcjfiknpiblpbnmjgbehodclokg |
URL Officiel | https://chromewebstore.google.com/detail/stumble-across/olognjcjfiknpiblpbnmjgbehodclokg |
Description | Bookmarking and content discovery on the blockchain |
Taille du Fichier | 125 KB |
Nombre d'Installations | 13 |
Version Actuelle | 0.3 |
Dernière Mise à Jour | 2020-09-28 |
Date de Publication | 2020-09-15 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | StumbleAcross |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://stumbleacross.app |
URL de la Page de Politique de Confidentialité | https://stumbleacross.app/privacy.html |
Langues Prises en Charge | 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:\/\/*\/*" ] } |