Stumble Across

Bookmarking and content discovery on the blockchain

Stumble Acrossคืออะไร?

Stumble Across เป็นส่วนขยายของ Chrome ที่พัฒนาโดย StumbleAcross และคุณลักษณะหลักของมันคือ "Bookmarking and content discovery on the blockchain"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stumble Across

ดาวน์โหลดไฟล์ส่วนขยาย 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:\/\/*\/*"
    ]
}