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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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:\/\/*\/*"
    ]
}