linkedin-peeker

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

Co to jest linkedin-peeker?

linkedin-peeker to rozszerzenie Chrome opracowane przez wencodes, a jego główną funkcją jest „A chrome extension that allows anyone (without login) to view linkedin profile”.

Pobierz plik CRX rozszerzenia linkedin-peeker

Pobierz pliki rozszerzeń linkedin-peeker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa linkedin-peeker linkedin-peeker
ID bllfnnhhjehaiiljoapijedaldhinamk
Oficjalny URL https://chrome.google.com/webstore/detail/linkedin-peeker/bllfnnhhjehaiiljoapijedaldhinamk
Opis A chrome extension that allows anyone (without login) to view linkedin profile
Rozmiar pliku 26.04 KB
Liczba instalacji 25
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2017-08-18
Data Publikacji 2017-08-18
Deweloper wencodes
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/sohwendy/linkedin-peeker
Adres URL Strony Pomocy https://github.com/sohwendy/linkedin-peeker/issues
Obsługiwane Języki 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"
    ]
}