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
公式URL 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
Eメール [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"
    ]
}