linkedin-peeker

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

Cos'è linkedin-peeker?

linkedin-peeker è un'estensione di Chrome sviluppata da wencodes, e la sua funzione principale è "A chrome extension that allows anyone (without login) to view linkedin profile".

Scarica il file CRX dell'estensione linkedin-peeker

Scarica i file di estensione linkedin-peeker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome linkedin-peeker linkedin-peeker
ID bllfnnhhjehaiiljoapijedaldhinamk
URL Ufficiale https://chrome.google.com/webstore/detail/linkedin-peeker/bllfnnhhjehaiiljoapijedaldhinamk
Descrizione A chrome extension that allows anyone (without login) to view linkedin profile
Dimensione del File 26.04 KB
Conteggio Installazioni 25
Versione Corrente 1.0
Ultimo Aggiornamento 2017-08-18
Data di Pubblicazione 2017-08-18
Sviluppatore wencodes
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sohwendy/linkedin-peeker
URL della Pagina di Aiuto https://github.com/sohwendy/linkedin-peeker/issues
Lingue Supportate 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"
    ]
}