Stumble Across

Bookmarking and content discovery on the blockchain

Wat is Stumble Across?

Stumble Across is een Chrome-extensie ontwikkeld door StumbleAcross, en de belangrijkste functie is "Bookmarking and content discovery on the blockchain".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Stumble Across

Download Stumble Across-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Stumble Across Stumble Across
ID olognjcjfiknpiblpbnmjgbehodclokg
Officiële URL https://chromewebstore.google.com/detail/stumble-across/olognjcjfiknpiblpbnmjgbehodclokg
Beschrijving Bookmarking and content discovery on the blockchain
Bestandsgrootte 125 KB
Aantal Installaties 13
Huidige Versie 0.3
Laatst Bijgewerkt 2020-09-28
Publicatiedatum 2020-09-15
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar StumbleAcross
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://stumbleacross.app
URL van de Privacybeleid Pagina https://stumbleacross.app/privacy.html
Ondersteunde Talen 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:\/\/*\/*"
    ]
}