NHK Easy Furigana Toggle
Toggles furigana on or off on the NHK Easy new page.
NHK Easy Furigana Toggle란 무엇입니까?
NHK Easy Furigana Toggle은(는) Konatopic에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Toggles furigana on or off on the NHK Easy new page."입니다.
확장 프로그램 스크린샷
NHK Easy Furigana Toggle 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This simple extension is to be used with NHK Easy News site at "http://www3.nhk.or.jp/news/easy/". Click on the NHK Easy Furigana toggle browser action icon to toggle visibility of furigana on or off.
확장 프로그램 기본 정보
이름 | |
ID | dndemjinbplgaoacaljikaicpkdeofhi |
공식 URL | https://chrome.google.com/webstore/detail/nhk-easy-furigana-toggle/dndemjinbplgaoacaljikaicpkdeofhi |
설명 | Toggles furigana on or off on the NHK Easy new page. |
파일 크기 | 6.73 KB |
설치 횟수 | 1,098 |
현재 버전 | 0.1 |
최근 업데이트 | 2014-10-17 |
출시 날짜 | 2014-10-17 |
평점 | 4.18/5 총 22 개의 평점 |
개발자 | Konatopic |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NHK Easy Furigana Toggle", "version": "0.1", "manifest_version": 2, "description": "Toggles furigana on or off on the NHK Easy new page.", "icons": { "128": "images\/icon128.png" }, "browser_action": { "default_icon": "images\/icon128.png", "default_title": "Furigana on\/off" }, "permissions": [ "http:\/\/www3.nhk.or.jp\/news\/easy\/*", "https:\/\/www3.nhk.or.jp\/news\/easy\/*" ], "background": { "persistent": false, "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www3.nhk.or.jp\/news\/easy\/*", "https:\/\/www3.nhk.or.jp\/news\/easy\/*" ], "js": [ "scripts\/cs.js" ], "run_at": "document_end" } ] } |