linkedin-peeker

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

Qu'est-ce que linkedin-peeker ?

linkedin-peeker est une extension Chrome développée par wencodes, et sa fonction principale est "A chrome extension that allows anyone (without login) to view linkedin profile".

Télécharger le fichier CRX de l'extension linkedin-peeker

Téléchargez les fichiers d'extension linkedin-peeker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom linkedin-peeker linkedin-peeker
ID bllfnnhhjehaiiljoapijedaldhinamk
URL Officiel https://chrome.google.com/webstore/detail/linkedin-peeker/bllfnnhhjehaiiljoapijedaldhinamk
Description A chrome extension that allows anyone (without login) to view linkedin profile
Taille du Fichier 26.04 KB
Nombre d'Installations 25
Version Actuelle 1.0
Dernière Mise à Jour 2017-08-18
Date de Publication 2017-08-18
Développeur wencodes
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/sohwendy/linkedin-peeker
URL de la Page d'Aide https://github.com/sohwendy/linkedin-peeker/issues
Langues Prises en Charge 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"
    ]
}