Rick Rollette
See how many links you can click before getting Rickrolled.
Rick Rolletteとは何ですか?
Rick Rolletteはwestbycsによって開発されたChromeの拡張機能で、その主な機能は「See how many links you can click before getting Rickrolled.」です。
拡張機能のスクリーンショット
Rick Rollette拡張機能のCRXファイルをダウンロード
Rick Rollette拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension turns all hyperlinks from google.com and wikipedia.org into a game of roulette. You can select your chance of getting Rickrolled (0%-100%) and then start clicking links. See who can click the most links before getting redirected to Rick Astley's iconic "Never Gonna Give You Up" music video.
拡張機能の基本情報
名前 | |
ID | bonjmjpebjhpdhpnfkkfohhgccjdddco |
公式URL | https://chrome.google.com/webstore/detail/rick-rollette/bonjmjpebjhpdhpnfkkfohhgccjdddco |
説明 | See how many links you can click before getting Rickrolled. |
ファイルサイズ | 92.95 KB |
インストール数 | 87 |
現在のバージョン | 1.0 |
最終更新日 | 2020-03-23 |
公開日 | 2020-03-23 |
開発者 | westbycs |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Rick Rollette", "version": "1.0", "description": "See how many links you can click before getting Rickrolled.", "permissions": [ "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/rick16.png", "32": "images\/rick32.png", "48": "images\/rick48.png", "128": "images\/rick128.png" } }, "icons": { "16": "images\/rick16.png", "32": "images\/rick32.png", "48": "images\/rick48.png", "128": "images\/rick128.png" }, "manifest_version": 2, "content_scripts": [ { "js": [ "roller.js" ], "matches": [ "*:\/\/*.google.com\/*", "*:\/\/*.wikipedia.org\/*" ] } ] } |