Jambofy
Improves boring youtube thumbnails by adding Jambo the cat.
Jambofy क्या है?
Jambofy Puffbee21 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Improves boring youtube thumbnails by adding Jambo the cat."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Jambofy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Are you bored of every YouTube thumbnail being boring? Do you wish Jambo the cat was in every YouTube thumbnail? Well now you can have exactly that with this extension. You might even run into some other cats! Source code for extension: https://github.com/LiamHarrison25/Jambofy-Extension Questions or suggestions? Email [email protected] Notes: - This extension was inspired by YouTube MrBeastify: https://chromewebstore.google.com/detail/youtube-mrbeastify/dbmaeobgdodeimjdjnkipbfhgeldnmeb - This extension is unofficial and not affiliated with Jschlatt or YouTube.
एक्सटेंशन की मूल जानकारी
नाम | Jambofy |
ID | ecbedadooalalcgolmfgpnmphhccegei |
आधिकारिक URL | https://chromewebstore.google.com/detail/jambofy/ecbedadooalalcgolmfgpnmphhccegei |
विवरण | Improves boring youtube thumbnails by adding Jambo the cat. |
फ़ाइल का आकार | 55.79 MB |
स्थापना संख्या | 34,785 |
वर्तमान संस्करण | 0.1.1 |
अंतिम अपडेट | 2024-01-25 |
प्रकाशन तिथि | 2023-11-15 |
रेटिंग | 4.94/5 कुल 1478 रेटिंग्स |
डेवलपर | Puffbee21 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Jambofy", "version": "0.1.1", "description": "Improves boring youtube thumbnails by adding Jambo the cat.", "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "main.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "assets\/images\/*.png" ], "matches": [ "*:\/\/*\/*" ] } ], "action": { "default_icon": { "16": "assets\/icons\/icon-16.png", "24": "assets\/icons\/icon-24.png", "32": "assets\/icons\/icon-32.png", "128": "assets\/icons\/icon-128.png" }, "default_popup": "popup.html", "default_title": "Jambofyer" }, "icons": { "16": "assets\/icons\/icon-16.png", "24": "assets\/icons\/icon-24.png", "32": "assets\/icons\/icon-32.png", "128": "assets\/icons\/icon-128.png" } } |