Apples and Bananas
Replace vowel sounds on any webpage with a phoneme of your choice; just like the children's song!
Apples and Bananas란 무엇입니까?
Apples and Bananas은(는) http://usdivad.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace vowel sounds on any webpage with a phoneme of your choice; just like the children's song!"입니다.
확장 프로그램 스크린샷
Apples and Bananas 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Apples and Bananas ================== Ruplucu vuwul sunds un unu wubpugu wuth u phunumu uf ur chucu; just luku thu chuldrun's sung! Sumutumus thus wull rundur ur pugu vurtullu unrudublu, but ut's guruntud tu bu fun. Whu DUSN'T luku tu ut upplus und bununus? For more information, see http://en.wikipedia.org/wiki/Apples_and_Bananas. Images: Clker #3984 and #4056, both public domain. Thanks to [email protected] for providing the background.js code structure via Scramble!
확장 프로그램 기본 정보
이름 | |
ID | eafbbidpbemnjkbaolokpkedkmeamjgh |
공식 URL | https://chrome.google.com/webstore/detail/apples-and-bananas/eafbbidpbemnjkbaolokpkedkmeamjgh |
설명 | Replace vowel sounds on any webpage with a phoneme of your choice; just like the children's song! |
파일 크기 | 47.12 KB |
설치 횟수 | 84 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2014-03-01 |
출시 날짜 | 2014-03-01 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | http://usdivad.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/usdivad/apples-and-bananas |
도움말 페이지 URL | https://github.com/usdivad/apples-and-bananas |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "name": "Apples and Bananas", "description": "Replace vowel sounds on any webpage with a phoneme of your choice; just like the children's song!", "version": "1.0.2", "author": "David Su", "icons": { "128": "img\/icon_128.png", "48": "img\/icon_48.png", "16": "img\/icon_16.png" }, "browser_action": { "default_icon": "img\/icon_128.png", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "background.js" ], "matches": [ "*:\/\/*\/*" ] } ] } |