linkedin-peeker

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

Apa itu linkedin-peeker?

linkedin-peeker adalah ekstensi Chrome yang dikembangkan oleh wencodes, dan fitur utamanya adalah "A chrome extension that allows anyone (without login) to view linkedin profile".

Unduh Berkas CRX Ekstensi linkedin-peeker

Unduh file ekstensi linkedin-peeker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama linkedin-peeker linkedin-peeker
ID bllfnnhhjehaiiljoapijedaldhinamk
URL Resmi https://chrome.google.com/webstore/detail/linkedin-peeker/bllfnnhhjehaiiljoapijedaldhinamk
Deskripsi A chrome extension that allows anyone (without login) to view linkedin profile
Ukuran File 26.04 KB
Jumlah Instalasi 25
Versi Saat Ini 1.0
Terakhir Diperbarui 2017-08-18
Tanggal Publikasi 2017-08-18
Pengembang wencodes
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/sohwendy/linkedin-peeker
URL Halaman Bantuan https://github.com/sohwendy/linkedin-peeker/issues
Bahasa yang Didukung 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"
    ]
}