Rickroll Extension

Goes through all the links on a webpage and changes some of them to rickrolls.

Rickroll Extensionคืออะไร?

Rickroll Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matthew Bevins และคุณลักษณะหลักของมันคือ "Goes through all the links on a webpage and changes some of them to rickrolls."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rickroll Extension

ดาวน์โหลดไฟล์ส่วนขยาย Rickroll Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension is just for fun! Fool yourself on your own computer, or prank your friends by putting it on their computers!

FEATURES:
-Browser will change some of the links on any webpage to Rickrolls.
-You can choose what percentage of links are changed to Rickrolls by the extension.
-Cheat mode will allow you to easily tell what links are rickrolls.
-You can toggle cheat mode and the extension itself on the popup.

UPDATES:
v1.1 (10/6/2020): Added on/off button
v1.2 (12/10/2020): Fixed on/off button and added icon
v1.2.1 (4/22/2021): Made Rickroll links appear more frequently
v2.0 (4/28/2021): Added cheat mode and updated popup UI
v2.0.1 (5/31/2022): Removed console.log messages in code and verified extension works
v2.1 (6/11/2022): Switched to manifest v3.0 and made extension smoother in general
v2.2 (7/3/2022): Added sliders
v2.3 (9/7/2022): Added Rickroll frequency slider                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Rickroll Extension Rickroll Extension
ID ljkcmgibdnmdjdfpbggohpophnkiajfm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/rickroll-extension/ljkcmgibdnmdjdfpbggohpophnkiajfm
คำอธิบาย Goes through all the links on a webpage and changes some of them to rickrolls.
ขนาดไฟล์ 418 KB
จำนวนการติดตั้ง 8,000
เวอร์ชันปัจจุบัน 2.30
อัปเดตครั้งล่าสุด 2022-09-14
วันที่เผยแพร่ 2020-10-06
คะแนน 4.00/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา Matthew Bevins
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/MatthewRBevins/Rickroll-Extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Rickroll Extension",
    "author": "MatthewBevins",
    "description": "Goes through all the links on a webpage and changes some of them to rickrolls.",
    "version": "2.30",
    "icons": {
        "16": "Images\/16.png",
        "48": "Images\/48.png",
        "128": "Images\/128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Rickroll Extension"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}