Subscription Score

Never regret subscribing to a mailing list again

Subscription Score란 무엇입니까?

Subscription Score은(는) http://subscriptionscore.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Never regret subscribing to a mailing list again"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Subscription Score lets you see the details of over half a million mailing lists, before you give them your email address.

REQUIRES A PAID LICENCE KEY - purchase yours on our website subscriptionscore.com


FEATURES

➤ Keep control of your inbox

Our browser plugin identifies mailing lists used by the webpage you're visiting, and lets you know their reputation before you hand over your email address.

➤ Receive alerts every time you're at risk.

Set your threshold for spam and receive alerts when submitting your email address to a spammy mailing list. Choose to continue, or cancel and avoid your email address being signed up to an unwanted mailing list.

Don't want to be alerted for a certain website? Have a designated spam email address? You can control which sites and email addresses you will never receive alerts for.

➤ See scores for every email address you encounter.

Whether you're trying to stay productive, or striving for inbox zero, the best solution is to only give your email to people you trust.

You can see the details of every website you visit. See the A-F rank by glancing at the icon. Click the icon for more information about how many people unsubscribe, how many emails they send per week, and how easy it is to unsubscribe.

➤ See scores in your inbox

Get mailing list scores right in your Gmail inbox so that you can see what emails are worth holding onto.

➤ Easy on the eyes

We have chromatic and colorblind-friendly palettes for the alerts and light or dark themes for the app. Need a different color palette? Let us know and we'll add it for you.



FREQUENTLY ASKED QUESTIONS

➤ What makes a good score?
We look at various details of a mailing list, such as email frequency, how many people choose to unsubscribe from it, how easy it is to unsubscribe from, and various other statistics. It is then measured up against all others and given a percentile rank between F and A+.

➤ What browsers do you support?
The Subscription Score extension currently works with Chrome and Firefox. If we get requests for other browsers then we will create extensions them in future.

➤ Where does your data come from?
Our scores are generated from usage data from our other project Leave Me Alone (leavemealone.app), which allows users to easily unsubscribe from subscription emails.

➤  Will you add a new feature for me?
Maybe! We'll try and keep Subscription Score as lean and simple as possible, but if you have a good feature in mind then let us know!



FEEDBACK

We welcome your feedback! 🙂 subscriptionscore.com/feedback

Subscription Score is a squarecat.io project.                    

확장 프로그램 기본 정보

이름 Subscription Score Subscription Score
ID dofnhoejjdgfjlafgnanoaijclabbhai
공식 URL https://chrome.google.com/webstore/detail/subscription-score/dofnhoejjdgfjlafgnanoaijclabbhai
설명 Never regret subscribing to a mailing list again
파일 크기 1.13 MB
설치 횟수 20
현재 버전 v0.4.4
최근 업데이트 2020-03-06
출시 날짜 2020-03-04
평점 5.00/5 총 5 개의 평점
개발자 http://subscriptionscore.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://subscriptionscore.com
도움말 페이지 URL https://subscriptionscore.com#faq
개인정보 보호 정책 페이지 URL https://ellieai.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Subscription Score",
    "description": "Never regret subscribing to a mailing list again",
    "version": "0.4.4",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "assets\/logo.png"
    },
    "icons": {
        "16": "assets\/icon-16.png",
        "32": "assets\/icon-32.png",
        "64": "assets\/icon-64.png",
        "128": "assets\/icon.png"
    },
    "web_accessible_resources": [
        "onload.bundle.js",
        "frame.html",
        "frame.bundle.js",
        "frame.css"
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "optional_permissions": [
        ""
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*\/*"
            ],
            "js": [
                "\/gmail.bundle.js"
            ],
            "css": [
                "\/gmail.bundle.css"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "\/content.bundle.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_page": "options.html",
    "externally_connectable": {
        "matches": [
            "https:\/\/subscriptionscore.com\/*"
        ]
    },
    "version_name": "v0.4.4"
}