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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Spongebobify
قم بتنزيل ملفات الامتداد Spongebobify بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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" ] } |