linkedin-peeker

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

什麼是linkedin-peeker?

linkedin-peeker是由wencodes開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension that allows anyone (without login) to view linkedin profile”。

下載linkedin-peeker擴展crx文件

下載linkedin-peeker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 linkedin-peeker linkedin-peeker
ID bllfnnhhjehaiiljoapijedaldhinamk
官方網址 https://chrome.google.com/webstore/detail/linkedin-peeker/bllfnnhhjehaiiljoapijedaldhinamk
簡介 A chrome extension that allows anyone (without login) to view linkedin profile
檔案大小 26.04 KB
安裝次數 25
目前版本 1.0
更新時間 2017-08-18
上架時間 2017-08-18
開發者 wencodes
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/sohwendy/linkedin-peeker
說明頁面URL https://github.com/sohwendy/linkedin-peeker/issues
支援的語言 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"
    ]
}