Spongebobify

Easily Spongebobify your text by highlighting or pasting into this extension window

Spongebobifyคืออะไร?

Spongebobify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nicholaswang2000 และคุณลักษณะหลักของมันคือ "Easily Spongebobify your text by highlighting or pasting into this extension window"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Spongebobifying text has never been easier! You can spongebobify by simply clicking on the extension popup window and then entering text. You can also spongebobify by highlighting any text you see on Chrome, and right-clicking 'Spongebobify'. This will insert the spongebobified text right into your browser for you to copy and paste anywhere. Spongebobify with ease however you like with this extension!                    

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

ชื่อ Spongebobify Spongebobify
ID kjdlnkopbcdbnjcgipilmabafdoofiof
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/spongebobify/kjdlnkopbcdbnjcgipilmabafdoofiof
คำอธิบาย Easily Spongebobify your text by highlighting or pasting into this extension window
ขนาดไฟล์ 157 KB
จำนวนการติดตั้ง 65
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2020-07-14
วันที่เผยแพร่ 2020-07-14
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา nicholaswang2000
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spongebobify",
    "description": "Easily Spongebobify your text by highlighting or pasting into this extension window",
    "version": "1.0.0",
    "author": "Nicholas Wang",
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "64": "images\/icon_64.png",
        "128": "images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon_16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/popup.js"
            ]
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "js\/spongebobify.js"
        ]
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ]
}