Universal Random Button

Open a random piece of content from your current site/creator — a blog post, YT video, Netflix episode, comic, wiki page or tweet.

ما هو Universal Random Button؟

Universal Random Button هو إضافة Chrome تم تطويرها بواسطة http://unirandom.com، والميزة الرئيسية لها هي "Open a random piece of content from your current site/creator — a blog post, YT video, Netflix episode, comic, wiki page or tweet.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Universal Random Button

قم بتنزيل ملفات الامتداد Universal Random Button بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Simply navigate to the desired site/channel/show/user and click the extension icon to get a random piece of content from its archive. 

Note: I make no claims that it'll work for every news site/blog/webcomic. During testing the success rate has been ~80% — it succeeds unless my rules break down due to inconsistent URL & archive formatting (did you know the internet is quite varied?).

YOU CAN OPEN A RANDOM...
——————————————————
# Blog post
# YouTube video (from channel)
# Netflix episode (from show)
# Comic strip
# News article
# Wiki page
# Tweet (from user)
# Tumblr post (from user)
# Subreddit
# Goodreads book
# IMBd movie
# UrbanDictionary word
# Scryfall & Gatherer MTG card
# Sporcle quiz

TIPS
—————————————————
You can use the site unirandom.com to get the same functionality on your phone. 

You can use the randomizing shortcut "Ctrl+B" to avoid having to click on the icon. 

The extension asks for your browsing history to avoid opening a link you've already visited on certain sites (not only since you've downloaded the extension, but since you last cleared your history). If you're using Chrome on your phone with sync turned on, you can avoid opening any links in its browsing history as well.                    

معلومات أساسية عن التمديد

الاسم Universal Random Button Universal Random Button
ID lkkaphnmolhefdbcgjfekdnabgkgpgfo
عنوان URL الرسمي https://chrome.google.com/webstore/detail/universal-random-button/lkkaphnmolhefdbcgjfekdnabgkgpgfo
الوصف Open a random piece of content from your current site/creator — a blog post, YT video, Netflix episode, comic, wiki page or tweet.
حجم الملف 127 KB
عدد التثبيتات 56
النسخة الحالية 0.0.0.1
آخر تحديث 2021-07-05
تاريخ النشر 2021-07-05
تقييم 3.67/5 مجموع تقييمات 3
المطور http://unirandom.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://unirandom.com/
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Universal Random Button",
    "version": "0.0.0.1",
    "description": "Open a random piece of content from your current site\/creator \u2014 a blog post, YT video, Netflix episode, comic, wiki page or tweet.",
    "manifest_version": 2,
    "incognito": "split",
    "background": {
        "scripts": [
            "jquery-3.6.0.js",
            "background.js",
            "sortcurrentblogsavedlinks.js",
            "youtube.js",
            "netflix.js",
            "blogpost.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab",
        "history"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+B"
            }
        }
    },
    "icons": {
        "128": "icon.png"
    }
}