Stumble Across

Bookmarking and content discovery on the blockchain

什么是Stumble Across?

Stumble Across是由StumbleAcross开发的Chrome扩展程序,该扩展的主要功能是“Bookmarking and content discovery on the blockchain”。

扩展截图

screenshot
screenshot

下载Stumble Across扩展crx文件

下载Stumble Across扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Stumble Across Stumble Across
ID olognjcjfiknpiblpbnmjgbehodclokg
官方URL https://chromewebstore.google.com/detail/stumble-across/olognjcjfiknpiblpbnmjgbehodclokg
简介 Bookmarking and content discovery on the blockchain
文件大小 125 KB
安装次数 13
当前版本 0.3
更新时间 2020-09-28
上架时间 2020-09-15
评分 5.00/5 共1次评分
开发者 StumbleAcross
电子邮箱 [email protected]
付费类型 free
扩展官网 https://stumbleacross.app
隐私政策页面URL https://stumbleacross.app/privacy.html
支持的语言 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:\/\/*\/*"
    ]
}