Doge Meet
Change meet user profile pictures to talking talk
What is Doge Meet?
Doge Meet is a Chrome extension developed by shobhitbhosure7, and its main feature is "Change meet user profile pictures to talking talk".
Extension Screenshots
Download Doge Meet Extension CRX File
Download Doge Meet extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Doge Meet makes google meetings fun by replacing everyone's profile picture with Talking doge
Extension Basic Information
Name | Doge Meet |
ID | mbikelhambebmkcjiiokjbbahpcakecf |
Official URL | https://chromewebstore.google.com/detail/doge-meet/mbikelhambebmkcjiiokjbbahpcakecf |
Description | Change meet user profile pictures to talking talk |
File Size | 38.63 KB |
Installation Count | 171 |
Current Version | 1.0 |
Last Updated | 2021-04-14 |
Publish Date | 2021-04-14 |
Rating | 5.00/5 Total 2 Ratings |
Developer | shobhitbhosure7 |
[email protected] | |
Payment Type | free |
Help Page URL | https://twitter.com/nullbytes00 |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Doge Meet", "version": "1.0", "description": "Change meet user profile pictures to talking talk", "icons": { "128": "meetdoge128.png", "48": "meetdoge48.png", "16": "meetdoge16.png" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "doge.js" ] } ], "background": { "scripts": [ "activate.js" ] }, "browser_action": { "default_icon": "meetdoge16.png" }, "permissions": [ "https:\/\/meet.google.com\/*" ] } |