MemeX
MemeX is a chrome extension which retrieves a gif based on your current Chrome tab and occasionally retrieves a random meme from…
Was ist MemeX?
MemeX ist eine Chrome-Erweiterung, die von sevenseasofbri entwickelt wurde, und ihr Hauptmerkmal ist "MemeX is a chrome extension which retrieves a gif based on your current Chrome tab and occasionally retrieves a random meme from…".
Erweiterungsscreenshots
MemeX-Erweiterungs-CRX-Datei herunterladen
Laden Sie MemeX-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
MemeX is a chrome extension which retrieves a gif based on your current Chrome tab and occasionally retrieves a random meme from reddit for you to enjoy!
Simply install the extension and pin it to the toolbar. To obtain a gif/random meme, simply click on the extension or use the following keyboard shortcuts:
- Windows: "Ctrl+Shift+Y",
- Mac: "Command+Shift+Y",
- Chromeos: "Ctrl+Shift+U",
- Linux: "Ctrl+Shift+J"
This was made by our team (comprising of students) for Singapore's largest student run hackathon, Hack&Roll 2021.
This wouldn't have been possible without the following APIs and their extensive documentation:
- Meme API by D3vd: https://github.com/D3vd/Meme_Api
- Giphy API: https://developers.giphy.com/docs/api Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jmejlldkplipfacidogapfoemeponabf |
| Offizielle URL | https://chrome.google.com/webstore/detail/memex/jmejlldkplipfacidogapfoemeponabf |
| Beschreibung | MemeX is a chrome extension which retrieves a gif based on your current Chrome tab and occasionally retrieves a random meme from… |
| Dateigröße | 130 KB |
| Installationsanzahl | 20 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2021-01-10 |
| Veröffentlichungsdatum | 2021-01-10 |
| Entwickler | sevenseasofbri |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "MemeX",
"version": "1.0",
"manifest_version": 2,
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "My custom google Extension"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y",
"chromeos": "Ctrl+Shift+U",
"linux": "Ctrl+Shift+J"
}
}
},
"permissions": [
"activeTab"
],
"content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
} | |