Annoyatron

Play randomally annoying sounds to troll your co-workers

Annoyatronคืออะไร?

Annoyatron เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Avishai และคุณลักษณะหลักของมันคือ "Play randomally annoying sounds to troll your co-workers"

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

screenshot

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

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

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

                        Troll your friends, family and co-workers with random annoying sounds. This extension will play random annoying sounds on random tabs every 20 - 40 minutes. Drive your loved one crazy by installing this extension on their Chrome and watch them suffer :)                    

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

ชื่อ Annoyatron Annoyatron
ID aidikdpegckihbiaoiipjaamonflhnlb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/annoyatron/aidikdpegckihbiaoiipjaamonflhnlb
คำอธิบาย Play randomally annoying sounds to troll your co-workers
ขนาดไฟล์ 456 KB
จำนวนการติดตั้ง 96
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2022-02-17
วันที่เผยแพร่ 2022-02-03
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Avishai
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/avishail/annoyatron
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Annoyatron",
    "description": "Play randomally annoying sounds to troll your co-workers",
    "version": "1.4",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "sound\/*.*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "512": "\/img\/icon.png"
    }
}