Stumble Across
Bookmarking and content discovery on the blockchain
Apa itu Stumble Across?
Stumble Across adalah ekstensi Chrome yang dikembangkan oleh StumbleAcross, dan fitur utamanya adalah "Bookmarking and content discovery on the blockchain".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Stumble Across
Unduh file ekstensi Stumble Across dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Stumble Across |
ID | olognjcjfiknpiblpbnmjgbehodclokg |
URL Resmi | https://chromewebstore.google.com/detail/stumble-across/olognjcjfiknpiblpbnmjgbehodclokg |
Deskripsi | Bookmarking and content discovery on the blockchain |
Ukuran File | 125 KB |
Jumlah Instalasi | 13 |
Versi Saat Ini | 0.3 |
Terakhir Diperbarui | 2020-09-28 |
Tanggal Publikasi | 2020-09-15 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | StumbleAcross |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://stumbleacross.app |
URL Halaman Kebijakan Privasi | https://stumbleacross.app/privacy.html |
Bahasa yang Didukung | 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:\/\/*\/*" ] } |