Rick Rollette
See how many links you can click before getting Rickrolled.
Rick Rolletteคืออะไร?
Rick Rollette เป็นส่วนขยายของ Chrome ที่พัฒนาโดย westbycs และคุณลักษณะหลักของมันคือ "See how many links you can click before getting Rickrolled."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rick Rollette
ดาวน์โหลดไฟล์ส่วนขยาย 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\/*" ] } ] } |