Mammoth Project Notification Extension
This is an official extension provided by Mammoth Project. You can quickly receive notifications of tasks related to you.
What is Mammoth Project Notification Extension?
Mammoth Project Notification Extension is a Chrome extension developed by https://mmth.pro, and its main feature is "This is an official extension provided by Mammoth Project. You can quickly receive notifications of tasks related to you.".
Extension Screenshots
Download Mammoth Project Notification Extension Extension CRX File
Download Mammoth Project Notification Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Mammoth Project Notification Extension |
ID | dclbjdddfjoojbokdieecflmniegkhdj |
Official URL | https://chromewebstore.google.com/detail/mammoth-project-notificat/dclbjdddfjoojbokdieecflmniegkhdj |
Description | This is an official extension provided by Mammoth Project. You can quickly receive notifications of tasks related to you. |
File Size | 625 KB |
Installation Count | 75 |
Current Version | 1.0.12 |
Last Updated | 2022-03-07 |
Publish Date | 2020-04-14 |
Developer | https://mmth.pro |
[email protected] | |
Payment Type | free |
Extension Website | https://mmth.pro/ |
Help Page URL | https://app.mmth.pro/contacts |
Privacy Policy Page URL | https://mmth.pro/ja/privacypolicy |
Supported Languages | 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 } |