linkedin-peeker

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

Wat is linkedin-peeker?

linkedin-peeker is een Chrome-extensie ontwikkeld door wencodes, en de belangrijkste functie is "A chrome extension that allows anyone (without login) to view linkedin profile".

Download het CRX-bestand van de extensie linkedin-peeker

Download linkedin-peeker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam linkedin-peeker linkedin-peeker
ID bllfnnhhjehaiiljoapijedaldhinamk
Officiële URL https://chrome.google.com/webstore/detail/linkedin-peeker/bllfnnhhjehaiiljoapijedaldhinamk
Beschrijving A chrome extension that allows anyone (without login) to view linkedin profile
Bestandsgrootte 26.04 KB
Aantal Installaties 25
Huidige Versie 1.0
Laatst Bijgewerkt 2017-08-18
Publicatiedatum 2017-08-18
Ontwikkelaar wencodes
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/sohwendy/linkedin-peeker
Help Pagina-URL https://github.com/sohwendy/linkedin-peeker/issues
Ondersteunde Talen 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"
    ]
}