Rhymey
An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.
Rhymey란 무엇입니까?
Rhymey은(는) Rowan Deysel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry."입니다.
확장 프로그램 스크린샷
Rhymey 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Rhymey display words that rhyme with the word you double clicked on (even inside of Google based pages) Very useful for writing poetry when in inspired mode! - Please note that the selected word has to be at least 3 characters long. - Rhymey uses the lovely datamuse api (https://www.datamuse.com/api/) - Github here: https://github.com/goatonabicycle/Rhymey Please feel free to give feedback and suggestions.
확장 프로그램 기본 정보
이름 | Rhymey |
ID | fbkmdcolngnmmhmdkhngfmdmeofipahp |
공식 URL | https://chromewebstore.google.com/detail/rhymey/fbkmdcolngnmmhmdkhngfmdmeofipahp |
설명 | An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry. |
파일 크기 | 17.87 KB |
설치 횟수 | 507 |
현재 버전 | 1.2.1 |
최근 업데이트 | 2020-04-25 |
출시 날짜 | 2020-04-24 |
평점 | 3.88/5 총 16 개의 평점 |
개발자 | Rowan Deysel |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Rhymey", "short_name": "Rhymey", "description": "An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.", "version": "1.2.1", "manifest_version": 2, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "http:\/\/localhost\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/custom.css" ], "run_at": "document_idle" }, { "js": [ "js\/googleDocsUtil.js" ], "matches": [ "https:\/\/docs.google.com\/document\/*", "https:\/\/mail.google.com\/mail\/*" ], "run_at": "document_idle" } ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |