Unsubmarine

Bulk Unsubscribe in Gmail

Unsubmarine란 무엇입니까?

Unsubmarine은(는) Sam Collins에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bulk Unsubscribe in Gmail"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Unsubmarine 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Unsubmarine automates the process of clicking through emails to find unsubscribe links, and presents them in one list so you can choose what to bulk unsubscribe from.

Privacy and security matter a great in this context, so I wrote Unsubmarine in a way that is ultra safe to run in your inbox (even though this limits its abilities):

1) It is open source: https://github.com/smcllns/unsubmarine 
2) It is a client-only browser extension so it doesn't connect to any servers, so your data always stays in your browser
3) It has no persistent local storage so it doesn't remember anything after a page refresh
4) It only scans for unsubscribe links and doesn't delete any emails
5) It does nothing until you click Start.

I made it to solve my own unsubscribe problems in gmail, feel free to use it if it helps you too!                    

확장 프로그램 기본 정보

이름 Unsubmarine Unsubmarine
ID pjghmcgcepbikjblbmlhicdldmhjljhm
공식 URL https://chromewebstore.google.com/detail/unsubmarine/pjghmcgcepbikjblbmlhicdldmhjljhm
설명 Bulk Unsubscribe in Gmail
파일 크기 652 KB
설치 횟수 140
현재 버전 0.4.0
최근 업데이트 2023-08-26
출시 날짜 2020-09-01
평점 3.67/5 총 3 개의 평점
개발자 Sam Collins
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://smcllns.com/unsubmarine?ref=crxwebstore
도움말 페이지 URL https://github.com/smcllns/unsubmarine/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Unsubmarine",
    "version": "0.4.0",
    "description": "Bulk Unsubscribe in Gmail",
    "homepage": "https:\/\/smcllns.com\/unsubmarine?ref=crxwebstore",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content\/bundle.js"
            ],
            "css": [
                "content\/bundle.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background\/bg.js",
            "background\/hot-reload.js"
        ]
    },
    "web_accessible_resources": [
        "background\/*.js",
        "content\/bundle.*",
        "images\/*.png"
    ],
    "permissions": [
        "declarativeContent"
    ],
    "page_action": {
        "default_title": "Run Unsubmarine in Gmail",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}