Simple proxy for puppeteer
Set a proxy for the browser, can be used with pupeteer check description.
Simple proxy for puppeteer란 무엇입니까?
Simple proxy for puppeteer은(는) https://blog.flashsoft.eu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Set a proxy for the browser, can be used with pupeteer check description."입니다.
확장 프로그램 스크린샷
Simple proxy for puppeteer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Simple proxy for puppeteer |
ID | meeohdhldndmeffgoccpgacfdigmphab |
공식 URL | https://chromewebstore.google.com/detail/simple-proxy-for-puppetee/meeohdhldndmeffgoccpgacfdigmphab |
설명 | Set a proxy for the browser, can be used with pupeteer check description. |
파일 크기 | 41.46 KB |
설치 횟수 | 71 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2021-08-02 |
출시 날짜 | 2021-08-02 |
개발자 | https://blog.flashsoft.eu |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/andrei0x309/simple-proxy-for-puppeteer-chrome-extension |
도움말 페이지 URL | https://github.com/andrei0x309/simple-proxy-for-puppeteer-chrome-extension |
개인정보 보호 정책 페이지 URL | https://github.com/andrei0x309/yup-live-chrome-extension/blob/main/PRIVACY_POLICY.md |
지원되는 언어 | 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" } } |