Android Messages SMS Counter

Show SMS messages count in Android Messages web version

Что такое Android Messages SMS Counter?

Android Messages SMS Counter - это расширение Chrome, разработанное Randika Srimal, и его основная функция - "Show SMS messages count in Android Messages web version".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Android Messages SMS Counter

Скачайте файлы расширений Android Messages SMS Counter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Android Messages web versions lacks feature to show current SMSes count and remaining characters count in a one message. This tool count the number of SMSes per one message in Android Messages web interface and also display the count near Send button.                    

Основная информация о расширении

Название Android Messages SMS Counter Android Messages SMS Counter
ID gjfniacajmcfphdmookhbkbhnidmmifh
Официальный URL https://chromewebstore.google.com/detail/android-messages-sms-coun/gjfniacajmcfphdmookhbkbhnidmmifh
Описание Show SMS messages count in Android Messages web version
Размер файла 18.02 KB
Количество установок 14
Текущая Версия 1.0
Последнее Обновление 2018-09-27
Дата публикации 2018-09-27
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Randika Srimal
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://area51projects.com
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Android Messages SMS Counter",
    "description": "Show SMS messages count in Android Messages web version",
    "short_name": "Android Messages SMS Counter",
    "author": "Randika Srimal",
    "version": "1.0",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Android Messages SMS Counter",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/messages.android.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "inject.js"
    ]
}