Avocalculator
Replaces money with the equivalent number of avocado toasts.
Что такое Avocalculator?
Avocalculator - это расширение Chrome, разработанное Matthew Zhang, и его основная функция - "Replaces money with the equivalent number of avocado toasts.".
Снимки экрана расширения
Скачать файл CRX расширения Avocalculator
Скачайте файлы расширений Avocalculator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Replaces money with the equivalent number of avocado toasts, since that's what millennials are all into these days. Основная информация о расширении
| Название | |
| ID | kmenbojckcdnijlgjmhchdpoplodlekm |
| Официальный URL | https://chromewebstore.google.com/detail/avocalculator/kmenbojckcdnijlgjmhchdpoplodlekm |
| Описание | Replaces money with the equivalent number of avocado toasts. |
| Размер файла | 21.91 KB |
| Количество установок | 10 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2017-05-26 |
| Дата публикации | 2017-05-26 |
| Рейтинг | 5.00/5 Всего 3 оценок |
| Разработчик | Matthew Zhang |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Avocalculator",
"version": "1.0",
"description": "Replaces money with the equivalent number of avocado toasts.",
"options_page": "options.html",
"permissions": [
"storage"
],
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_end"
}
]
} | |