InstAddr for Chrome

Extension that notifies you of new e-mails received at your InstAddr e-mail address.

InstAddr for Chrome란 무엇입니까?

InstAddr for Chrome은(는) https://m.kuku.lu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension that notifies you of new e-mails received at your InstAddr e-mail address."입니다.

확장 프로그램 스크린샷

screenshot

InstAddr for Chrome 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Pop-up notifications will notify you when an email is received at the email address you have obtained from InstAddr.

You can create and automatically enter a Disposable E-Mail Address with a single click by right-clicking in the input box on the site.

InstAddr is a highly functional disposable email address service available for PCs and smartphones (Android, iPhone, iPad, Kindle Fire...).
You can get as many e-mail addresses as you want with one click, and delete them as soon as you don't need them any more.

InstAddr
https://m.kuku.lu/

--- 
Due to Chrome's transition to Manifest V3, which will soon force all extensions to migrate to Manifest V3, some functions that were previously available in V2 (such as sound notification and synthetic voice) are no longer available. Please understand this.                    

확장 프로그램 기본 정보

이름 InstAddr for Chrome InstAddr for Chrome
ID ephdkjannbbaocplebkfnnnimphfpigj
공식 URL https://chromewebstore.google.com/detail/instaddr-for-chrome/ephdkjannbbaocplebkfnnnimphfpigj
설명 Extension that notifies you of new e-mails received at your InstAddr e-mail address.
파일 크기 27.39 KB
설치 횟수 28,950
현재 버전 2.0.4
최근 업데이트 2023-06-11
출시 날짜 2020-06-19
평점 4.77/5 총 61 개의 평점
개발자 https://m.kuku.lu
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://m.kuku.lu/
도움말 페이지 URL https://m.kuku.lu/help.php
개인정보 보호 정책 페이지 URL https://aquapal.net/rule.php
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "2.0.4",
    "manifest_version": 3,
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/m.kuku.lu\/*",
                "*:\/\/mr.kuku.lu\/*"
            ],
            "all_frames": false,
            "js": [
                "disable_webpush.js"
            ]
        }
    ],
    "action": {
        "default_title": "__MSG_extName__",
        "default_icon": "img\/icon48.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "icons": {
        "128": "img\/icon128.png",
        "48": "img\/icon48.png",
        "32": "img\/icon32.png"
    },
    "permissions": [
        "background",
        "notifications",
        "contextMenus",
        "webRequest",
        "storage",
        "alarms"
    ],
    "host_permissions": [
        "*:\/\/*.kuku.lu\/"
    ]
}