Mammoth Project Notification Extension
This is an official extension provided by Mammoth Project. You can quickly receive notifications of tasks related to you.
Что такое Mammoth Project Notification Extension?
Mammoth Project Notification Extension - это расширение Chrome, разработанное https://mmth.pro, и его основная функция - "This is an official extension provided by Mammoth Project. You can quickly receive notifications of tasks related to you.".
Снимки экрана расширения
Скачать файл CRX расширения Mammoth Project Notification Extension
Скачайте файлы расширений Mammoth Project Notification Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is an official extension provided by Mammoth Project. You can quickly receive notifications of tasks related to you. - You need to register for the Mammoth Project to use it. Please register as a user from the link below. https://mmth.pro/ - Please log in after installing the extension - You can select the update interval of 1 minute, 1 hour, 1 day, or none (click to get) - You can also move to project listings, task lists and searches with one click - The language of the extension is according to Chrome's language settings
Основная информация о расширении
Название | Mammoth Project Notification Extension |
ID | dclbjdddfjoojbokdieecflmniegkhdj |
Официальный URL | https://chromewebstore.google.com/detail/mammoth-project-notificat/dclbjdddfjoojbokdieecflmniegkhdj |
Описание | This is an official extension provided by Mammoth Project. You can quickly receive notifications of tasks related to you. |
Размер файла | 625 KB |
Количество установок | 75 |
Текущая Версия | 1.0.12 |
Последнее Обновление | 2022-03-07 |
Дата публикации | 2020-04-14 |
Разработчик | https://mmth.pro |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://mmth.pro/ |
URL страницы помощи | https://app.mmth.pro/contacts |
URL страницы политики конфиденциальности | https://mmth.pro/ja/privacypolicy |
Поддерживаемые языки | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "short_name": "__MSG_extShortName__", "version": "1.0.12", "default_locale": "en", "description": "__MSG_extDesc__", "permissions": [ "tabs", "storage", "*:\/\/app.mmth.pro\/*" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/default16.png", "32": "assets\/default32.png", "48": "assets\/default48.png", "128": "assets\/default128.png" } }, "icons": { "16": "assets\/default16.png", "32": "assets\/default32.png", "48": "assets\/default48.png", "128": "assets\/default128.png" }, "content_scripts": [ { "matches": [ "*:\/\/app.mmth.pro\/*" ], "js": [ "content.js" ] } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "manifest_version": 2 } |