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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย EricaJoy และคุณลักษณะหลักของมันคือ "Calculate the amount of money you've lost as a result of the gender pay gap."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Lost Pay Calculator

ดาวน์โหลดไฟล์ส่วนขยาย Lost Pay Calculator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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'"
}