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은(는) sevenseasofbri에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "MemeX is a chrome extension which retrieves a gif based on your current Chrome tab and occasionally retrieves a random meme from…"입니다.
확장 프로그램 스크린샷
MemeX 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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'" } |