linkedin-peeker

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

What is linkedin-peeker?

linkedin-peeker is a Chrome extension developed by wencodes, and its main feature is "A chrome extension that allows anyone (without login) to view linkedin profile".

Download linkedin-peeker Extension CRX File

Download linkedin-peeker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name linkedin-peeker linkedin-peeker
ID bllfnnhhjehaiiljoapijedaldhinamk
Official URL https://chrome.google.com/webstore/detail/linkedin-peeker/bllfnnhhjehaiiljoapijedaldhinamk
Description A chrome extension that allows anyone (without login) to view linkedin profile
File Size 26.04 KB
Installation Count 25
Current Version 1.0
Last Updated 2017-08-18
Publish Date 2017-08-18
Developer wencodes
Email [email protected]
Payment Type free
Extension Website https://github.com/sohwendy/linkedin-peeker
Help Page URL https://github.com/sohwendy/linkedin-peeker/issues
Supported Languages 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"
    ]
}