Simple proxy for puppeteer

Set a proxy for the browser, can be used with pupeteer check description.

Simple proxy for puppeteer là gì?

Simple proxy for puppeteer là một tiện ích mở rộng Chrome được phát triển bởi https://blog.flashsoft.eu, và tính năng chính của nó là "Set a proxy for the browser, can be used with pupeteer check description.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Simple proxy for puppeteer

Tải xuống các tệp mở rộng Simple proxy for puppeteer 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

                        This extension is primarily to be used with Puppeteer to control the proxy setting of a chromium based web browser.

But you can use it as a simple proxy extension without Puppeteer. The only requirement is a working proxy server.

Check https://github.com/andrei0x309/simple-proxy-for-puppeteer-chrome-extension for usage example. 

𝐏𝐫𝐢𝐯𝐚𝐜𝐲 𝐏𝐨𝐥𝐢𝐜𝐲:
This extension does not collect any data form your device.
This extension does not use external files, everything is packed into the extension.
These are the permissions from extension manifest: ["proxy", "storage"], these permissions are necessary for the extension functionality.
This extension is completely open source, the source is available on my GitHUb - https://github.com/andrei0x309/simple-proxy-for-puppeteer-chrome-extension.
𝐂𝐨𝐧𝐭𝐚𝐜𝐭:
You can contact me using my website at https://flashsoft.eu.                    

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

Tên Simple proxy for puppeteer Simple proxy for puppeteer
ID meeohdhldndmeffgoccpgacfdigmphab
URL Chính Thức https://chromewebstore.google.com/detail/simple-proxy-for-puppetee/meeohdhldndmeffgoccpgacfdigmphab
Mô tả Set a proxy for the browser, can be used with pupeteer check description.
Kích Thước Tệp 41.46 KB
Số Lần Cài Đặt 71
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-08-02
Ngày Phát Hành 2021-08-02
Nhà Phát Triển https://blog.flashsoft.eu
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/andrei0x309/simple-proxy-for-puppeteer-chrome-extension
URL Trang Trợ Giúp https://github.com/andrei0x309/simple-proxy-for-puppeteer-chrome-extension
URL Trang Chính Sách Bảo Mật https://github.com/andrei0x309/yup-live-chrome-extension/blob/main/PRIVACY_POLICY.md
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.0.0",
    "version_name": "1.0.0",
    "permissions": [
        "storage",
        "proxy"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/spfp_icon16.png",
            "32": "images\/spfp_icon32.png",
            "48": "images\/spfp_icon48.png",
            "128": "images\/spfp_icon128.png"
        }
    },
    "web_accessible_resources": [],
    "icons": {
        "16": "images\/spfp_icon16.png",
        "32": "images\/spfp_icon32.png",
        "48": "images\/spfp_icon48.png",
        "128": "images\/spfp_icon128.png"
    }
}