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은(는) https://mmth.pro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is an official extension provided by Mammoth Project. You can quickly receive notifications of tasks related to you."입니다.
확장 프로그램 스크린샷
Mammoth Project Notification Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } |