linkedin-peeker

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

linkedin-peeker là gì?

linkedin-peeker là một tiện ích mở rộng Chrome được phát triển bởi wencodes, và tính năng chính của nó là "A chrome extension that allows anyone (without login) to view linkedin profile".

Tải xuống tệp CRX của tiện ích mở rộng linkedin-peeker

Tải xuống các tệp mở rộng linkedin-peeker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên linkedin-peeker linkedin-peeker
ID bllfnnhhjehaiiljoapijedaldhinamk
URL Chính Thức https://chrome.google.com/webstore/detail/linkedin-peeker/bllfnnhhjehaiiljoapijedaldhinamk
Mô tả A chrome extension that allows anyone (without login) to view linkedin profile
Kích Thước Tệp 26.04 KB
Số Lần Cài Đặt 25
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-08-18
Ngày Phát Hành 2017-08-18
Nhà Phát Triển wencodes
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sohwendy/linkedin-peeker
URL Trang Trợ Giúp https://github.com/sohwendy/linkedin-peeker/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}