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文件
下载Simple proxy for puppeteer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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"
}
} | |