Mammoth Project Notification Extension
This is an official extension provided by Mammoth Project. You can quickly receive notifications of tasks related to you.
¿Qué es Mammoth Project Notification Extension?
Mammoth Project Notification Extension es una extensión de Chrome desarrollada por https://mmth.pro, y su función principal es "This is an official extension provided by Mammoth Project. You can quickly receive notifications of tasks related to you.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Mammoth Project Notification Extension
Descarga archivos de extensión Mammoth Project Notification Extension en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Mammoth Project Notification Extension |
ID | dclbjdddfjoojbokdieecflmniegkhdj |
URL Oficial | https://chromewebstore.google.com/detail/mammoth-project-notificat/dclbjdddfjoojbokdieecflmniegkhdj |
Descripción | This is an official extension provided by Mammoth Project. You can quickly receive notifications of tasks related to you. |
Tamaño del Archivo | 625 KB |
Cantidad de Instalaciones | 75 |
Versión Actual | 1.0.12 |
Última Actualización | 2022-03-07 |
Fecha de Publicación | 2020-04-14 |
Desarrollador | https://mmth.pro |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://mmth.pro/ |
URL de la Página de Ayuda | https://app.mmth.pro/contacts |
URL de la Página de Política de Privacidad | https://mmth.pro/ja/privacypolicy |
Idiomas Soportados | 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 } |