Antibias
Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants.
Antibias क्या है?
Antibias Beyond द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Antibias एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This allows first impressions to form based on credentials and achievements–not superficial traits. Antibias easily toggles on and off by clicking the extension icon–but you may not need to turn it off completely (read on!) Hovering over a hidden name or photo on a user’s profile will reveal it. We recommend waiting to view these pieces of information until you’ve explored the candidate’s profile and decided whether or not to advance them in the hiring process. Antibias was created by the team at Beyond (www.bynd.com), a design company that accelerates transformative customer experiences.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | gfeilphhbcfaekkffklahpndiidiloln |
आधिकारिक URL | https://chrome.google.com/webstore/detail/antibias/gfeilphhbcfaekkffklahpndiidiloln |
विवरण | Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants. |
फ़ाइल का आकार | 754 KB |
स्थापना संख्या | 224 |
वर्तमान संस्करण | 1.7.5 |
अंतिम अपडेट | 2020-04-29 |
प्रकाशन तिथि | 2020-04-29 |
रेटिंग | 4.00/5 कुल 2 रेटिंग्स |
डेवलपर | Beyond |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://bynd.com |
गोपनीयता नीति पृष्ठ URL | https://bynd.com/privacy-policy |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Antibias", "version": "1.7.5", "description": "Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants.", "minimum_chrome_version": "63", "permissions": [ "activeTab", "storage", "http:\/\/*.linkedin.com\/*", "https:\/\/*.linkedin.com\/*" ], "background": { "persistent": false, "scripts": [ "js\/background.js" ] }, "browser_action": { "default_popup": "html\/popup.html", "default_icon": { "16": "images\/16x16.png", "32": "images\/32x32.png", "48": "images\/48x48.png", "128": "images\/128x128.png" }, "matches": [ "https:\/\/*.linkedin.com\/*" ] }, "content_scripts": [ { "persistent": false, "matches": [ "https:\/\/*.linkedin.com\/*" ], "web_accessible_resources": [ "css\/*", "js\/*", "images\/*" ], "css": [ "css\/content.css" ], "js": [ "js\/content.js" ], "run_at": "document_start" } ], "icons": { "16": "images\/16x16.png", "32": "images\/32x32.png", "48": "images\/48x48.png", "128": "images\/128x128.png" }, "manifest_version": 2 } |