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.”。
擴展截圖
下載Lost Pay Calculator擴展crx文件
下載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 |
ID | gjjbdckojilijfkelnnpbljnajnmdpeo |
官方網址 | 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'" } |