MemeX
MemeX is a chrome extension which retrieves a gif based on your current Chrome tab and occasionally retrieves a random meme from…
Τι είναι το MemeX;
Το MemeX είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον sevenseasofbri, και η κύρια λειτουργία του είναι "MemeX is a chrome extension which retrieves a gif based on your current Chrome tab and occasionally retrieves a random meme from…".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης MemeX
Λήψη αρχείων επέκτασης MemeX σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | jmejlldkplipfacidogapfoemeponabf |
| Επίσημο URL | https://chrome.google.com/webstore/detail/memex/jmejlldkplipfacidogapfoemeponabf |
| Περιγραφή | MemeX is a chrome extension which retrieves a gif based on your current Chrome tab and occasionally retrieves a random meme from… |
| Μέγεθος Αρχείου | 130 KB |
| Αριθμός Εγκαταστάσεων | 20 |
| Τρέχουσα Έκδοση | 1.0 |
| Τελευταία Ενημέρωση | 2021-01-10 |
| Ημερομηνία Δημοσίευσης | 2021-01-10 |
| Προγραμματιστής | sevenseasofbri |
| Ηλεκτρονικό ταχυδρομείο | [email protected] |
| Τύπος Πληρωμής | free |
| Υποστηριζόμενες Γλώσσες | 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'"
} | |