dev messenger
applies a dark console like theme to facebook messenger
Что такое dev messenger?
dev messenger - это расширение Chrome, разработанное attiewilly, и его основная функция - "applies a dark console like theme to facebook messenger".
Снимки экрана расширения
Скачать файл CRX расширения dev messenger
Скачайте файлы расширений dev messenger в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Transforms the facebook messenger's interface to look more like a distraction free console. The bright letters on a dark background are also more resting for the eyes Основная информация о расширении
| Название | |
| ID | omhmoiolkafieenilfphinccnecpenlc |
| Официальный URL | https://chromewebstore.google.com/detail/dev-messenger/omhmoiolkafieenilfphinccnecpenlc |
| Описание | applies a dark console like theme to facebook messenger |
| Размер файла | 339 KB |
| Количество установок | 20 |
| Текущая Версия | 2.3 |
| Последнее Обновление | 2016-10-30 |
| Дата публикации | 2016-10-30 |
| Рейтинг | 2.50/5 Всего 2 оценок |
| Разработчик | attiewilly |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "dev messenger",
"version": "2.3",
"description": "applies a dark console like theme to facebook messenger",
"background": {
"scripts": [
"background.js"
]
},
"page_action": {
"default_icon": "icon-19.png",
"default_title": "dev messenger"
},
"permissions": [
"tabs",
"https:\/\/www.messenger.com\/*"
],
"icons": {
"48": "icon-48.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.messenger.com\/*"
],
"css": [],
"js": [
"jquery-1.11.2.min.js",
"makeItNicer.js"
]
}
],
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"manifest_version": 2
} | |