linkedin-peeker

A chrome extension that allows anyone (without login) to view linkedin profile

linkedin-peekerคืออะไร?

linkedin-peeker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wencodes และคุณลักษณะหลักของมันคือ "A chrome extension that allows anyone (without login) to view linkedin profile"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย linkedin-peeker

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

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

                        If you are a linkedin stalker and don't want people to know about it, this extension is for you.

It removes the register form and allows you to scroll through the profile.                    

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

ชื่อ linkedin-peeker linkedin-peeker
ID bllfnnhhjehaiiljoapijedaldhinamk
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/linkedin-peeker/bllfnnhhjehaiiljoapijedaldhinamk
คำอธิบาย A chrome extension that allows anyone (without login) to view linkedin profile
ขนาดไฟล์ 26.04 KB
จำนวนการติดตั้ง 25
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2017-08-18
วันที่เผยแพร่ 2017-08-18
ผู้พัฒนา wencodes
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sohwendy/linkedin-peeker
URL หน้าช่วยเหลือ https://github.com/sohwendy/linkedin-peeker/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "linkedin-peeker",
    "version": "1.0",
    "description": "A chrome extension that allows anyone (without login) to view linkedin profile",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "browser_action": {
        "default_icon": "peeker.png",
        "default_title": "linkedin peeker"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "icons": {
        "128": "peeker.png"
    },
    "manifest_version": 2,
    "permissions": [
        "",
        "activeTab"
    ]
}