Simple proxy for puppeteer

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

Cos'è Simple proxy for puppeteer?

Simple proxy for puppeteer è un'estensione di Chrome sviluppata da https://blog.flashsoft.eu, e la sua funzione principale è "Set a proxy for the browser, can be used with pupeteer check description.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Simple proxy for puppeteer

Scarica i file di estensione Simple proxy for puppeteer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Simple proxy for puppeteer Simple proxy for puppeteer
ID meeohdhldndmeffgoccpgacfdigmphab
URL Ufficiale https://chromewebstore.google.com/detail/simple-proxy-for-puppetee/meeohdhldndmeffgoccpgacfdigmphab
Descrizione Set a proxy for the browser, can be used with pupeteer check description.
Dimensione del File 41.46 KB
Conteggio Installazioni 71
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-08-02
Data di Pubblicazione 2021-08-02
Sviluppatore https://blog.flashsoft.eu
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/andrei0x309/simple-proxy-for-puppeteer-chrome-extension
URL della Pagina di Aiuto https://github.com/andrei0x309/simple-proxy-for-puppeteer-chrome-extension
URL della Pagina della Politica sulla Privacy https://github.com/andrei0x309/yup-live-chrome-extension/blob/main/PRIVACY_POLICY.md
Lingue Supportate 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"
    }
}