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 - это расширение Chrome, разработанное http://usdivad.com, и его основная функция - "Replace vowel sounds on any webpage with a phoneme of your choice; just like the children's song!".
Снимки экрана расширения
Скачать файл CRX расширения Apples and Bananas
Скачайте файлы расширений Apples and Bananas в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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": [ "*:\/\/*\/*" ] } ] } |