Stumble Across
Bookmarking and content discovery on the blockchain
Cos'è Stumble Across?
Stumble Across è un'estensione di Chrome sviluppata da StumbleAcross, e la sua funzione principale è "Bookmarking and content discovery on the blockchain".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Stumble Across
Scarica i file di estensione Stumble Across in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Stumble Across |
ID | olognjcjfiknpiblpbnmjgbehodclokg |
URL Ufficiale | https://chromewebstore.google.com/detail/stumble-across/olognjcjfiknpiblpbnmjgbehodclokg |
Descrizione | Bookmarking and content discovery on the blockchain |
Dimensione del File | 125 KB |
Conteggio Installazioni | 13 |
Versione Corrente | 0.3 |
Ultimo Aggiornamento | 2020-09-28 |
Data di Pubblicazione | 2020-09-15 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | StumbleAcross |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://stumbleacross.app |
URL della Pagina della Politica sulla Privacy | https://stumbleacross.app/privacy.html |
Lingue Supportate | 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:\/\/*\/*" ] } |