Lost Pay Calculator

Calculate the amount of money you've lost as a result of the gender pay gap.

Lost Pay Calculator란 무엇입니까?

Lost Pay Calculator은(는) EricaJoy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Calculate the amount of money you've lost as a result of the gender pay gap."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Lost Pay Calculator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Calculate the amount of money you've lost as a result of the gender pay gap.

**Note**: This extension reads data from ssa.gov to calculate the amount of money you've made over your working lifetime. Though Chrome will alert you that it needs permission to write data as well, this is due to the lack of granularity in Chrome extension permissions (you can't get read permission to a site without also getting write permission).

Chrome will also alert you that this extension will request to read your browsing history, despite it not doing that (or actually requesting that permission). I believe this is either a bug in Chrome or that Google has changed the way extension permissions work, but have yet to update their documentation (https://developer.chrome.com/extensions/permission_warnings).

If you don't feel comfortable with these permissions, you can manually make the same calculations the extension does by doing the following:

• Navigate to https://secure.ssa.gov/mySSA/start
• Log In
• Click "Earnings Record"

There you'll find a table of all your earnings and can calculate your total and lost earnings accordingly.

Thanks!                    

확장 프로그램 기본 정보

이름 Lost Pay Calculator Lost Pay Calculator
ID gjjbdckojilijfkelnnpbljnajnmdpeo
공식 URL https://chromewebstore.google.com/detail/lost-pay-calculator/gjjbdckojilijfkelnnpbljnajnmdpeo
설명 Calculate the amount of money you've lost as a result of the gender pay gap.
파일 크기 292 KB
설치 횟수 26
현재 버전 1.1.2
최근 업데이트 2017-08-06
출시 날짜 2017-08-06
개발자 EricaJoy
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lost Pay Calculator",
    "description": "Calculate the amount of money you've lost as a result of the gender pay gap.",
    "version": "1.1.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/platform.twitter.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.ssa.gov\/*"
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/platform.twitter.com\/; object-src 'self'"
}