Idioms and Phrases
Shows idiom of the day in the new tab.
Idioms and Phrases란 무엇입니까?
Idioms and Phrases은(는) Ravi Ojha에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows idiom of the day in the new tab."입니다.
확장 프로그램 스크린샷
Idioms and Phrases 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Consume an idiom, one in every 24 hours! Why? The idea hit me while I was reading The Martian by Andy Weir. Rich Purnell, a character in the book, is portrayed as an autistic person, having difficulty in understanding the meaning of the abstract concepts of the language. So here goes, a chrome extension that would help me and the likes of Rich Purnell become better at such play of words. Concept is to show one idiom per day, so that it gets hard-wired in our memory.
확장 프로그램 기본 정보
이름 | Idioms and Phrases |
ID | ddmdooeeiphjmbcoaonbbkcadneggphh |
공식 URL | https://chromewebstore.google.com/detail/idioms-and-phrases/ddmdooeeiphjmbcoaonbbkcadneggphh |
설명 | Shows idiom of the day in the new tab. |
파일 크기 | 76.34 KB |
설치 횟수 | 1,635 |
현재 버전 | 0.6 |
최근 업데이트 | 2021-11-29 |
출시 날짜 | 2019-01-25 |
평점 | 4.27/5 총 11 개의 평점 |
개발자 | Ravi Ojha |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://rookieslab.com/projects/idiom-of-the-day/ |
개인정보 보호 정책 페이지 URL | https://www.rookieslab.com/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Idioms and Phrases", "description": "Shows idiom of the day in the new tab.", "version": "0.6", "incognito": "split", "chrome_url_overrides": { "newtab": "new_tab_idiom.html" }, "content_scripts": [ { "js": [ "jquery-3.2.1.min.js", "idiom.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "topSites", "chrome:\/\/favicon\/" ], "manifest_version": 2 } |