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은(는) http://unirandom.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open a random piece of content from your current site/creator — a blog post, YT video, Netflix episode, comic, wiki page or tweet."입니다.

확장 프로그램 스크린샷

screenshot

Universal Random Button 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}