In Your Face

Guess what faces will show up on LinkedIn when you search

In Your Faceคืออะไร?

In Your Face เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jchimmel และคุณลักษณะหลักของมันคือ "Guess what faces will show up on LinkedIn when you search"

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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย In Your Face

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

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

                        Analyze profile photos to glimpse who works where.

In Your Face is an attempt to use public data to analyze diversity within the workplace. In particular, the social network LinkedIn includes a huge amount of self-published data about who works for which employer. LinkedIn does not publish demographic information such as gender, age, or ethnicity. However, we can get a glimpse of that information by analyzing profile photos. We use the free Face++ API for this purpose.

Imagine you wanted to tally up how many men vs. how many women were on LinkedIn for a particular company. You could search on the company, then go page-by-page through the results, counting up the number of profiles with a man's face compared to the number of profiles with a woman's face. In Your Face tries to automate that process.

In Your Face is a browser extension for Google Chrome. It would be more practical to provide users a website, but LinkedIn does not provide a search function via their API. A browser extension allows us to examine the photos for any given search. The extensions does not store the data at any time, but merely sends off publicly-accessible image URLs to the face analysis API and tallies the results.

It's important to note that the face analysis API often makes mistakes on individual photos. However, we think that for large enough searches, the results should be representative.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ In Your Face In Your Face
ID cinajdhdcklkhnhakmahohmaanjompjb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/in-your-face/cinajdhdcklkhnhakmahohmaanjompjb
คำอธิบาย Guess what faces will show up on LinkedIn when you search
ขนาดไฟล์ 904 KB
จำนวนการติดตั้ง 23
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2017-10-20
วันที่เผยแพร่ 2017-10-20
ผู้พัฒนา jchimmel
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/CyberCRI/InYourFace
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "In Your Face",
    "description": "Guess what faces will show up on LinkedIn when you search",
    "version": "0.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "temp_popup.html",
        "default_title": "In Your Face"
    },
    "permissions": [
        "activeTab",
        "https:\/\/apius.faceplusplus.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.linkedin.com\/search\/results\/people\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}