Introduction
ExtensionPay is a browser extension development framework designed for AI. It allows you to build single-function, purely functional extension applications, which is currently AI's capability. However, building mature and robust complex systems with AI is unlikely to be achieved in the short term. Therefore, we have developed this architecture system to maximize AI's existing capabilities. When you develop a purely functional application using AI, login and payment features can be automatically added with one click, and 55 languages can be automatically translated with one click. Exclusive subscribers also enjoy one-click automated app upload functionality, significantly shortening the development process and time, eliminating the need to build backend services. This framework primarily serves those who cannot write code but can develop programs using AI, assisting them in monetizing their programs designed using natural language.
本框架主要服务人群是哪些不会写代码,但可以使用Ai开发出程序的人群,协助他们通过自然语言设计出的程序可以盈利
General prompt words
Click to download promptInstallation Environment
1. Install Google Chrome
中国版:https://www.google.cn/intl/zh-CN/chrome国际版:https://www.google.com/chrome
2. Enable Windows file extensions
文件夹 -> 查看 -> 勾选这俩:1.✓[文件扩展名] -> 2.✓[隐藏的项目]3. Install Notepad++
全球下载链接:http://notepad-plus-plus.org/downloads/v8.8.5/中国下载链接:https://pan.baidu.com/s/1VnjDZAVh5xrMz6KJE9Z1Og?pwd=q83q
安装成功后,新建几个后缀的文件:txt、js、css、json
右键 -> 打开方式 -> [选择其他应用] -> 并勾选[始终使用此应用打开] -> 更多应用 -> 在这台电脑上查找其他应用 -> Notepad++ -> Notepad++.exe
6. Websites for downloading icons
中国版:https://www.iconfont.cn国际版:https://www.flaticon.com
7. Common AI URLs
deepseek.comyuanbao.tencent.com
chatgpt.com
claude.ai
gemini.google.com
8. Common keyboard shortcuts
Ctrl+C 复制Ctrl+V 粘贴
Ctrl+F 搜索
Ctrl+A 全选
10. Screenshot tool
中国下载链接:https://pan.baidu.com/s/1rHUvbnfBHPEOuldKKfxi0A?pwd=p76p国际下载链接:https://drive.google.com/file/d/1b8Ono9pnM8P0p1ossQmueEUDKP4D-3ar
Upload Tutorial
上架网址:https://chrome.google.com/webstore/devconsole1、确保Gmail邮箱是通过你【长期】使用可接收短信验证码的手机号注册绑定的
2、gmail安全设置中的所有设置都绑定:myaccount.google.com/security
以上配置好了之后,下方链接打开谷歌扩展开发者后台,注册并支付5美金,如果您没有可付款的银行账户可以在您所在国家的电商平台或者Google搜索代付、代充值、Visa、Mastercard之类的关键词,找到代付完成付款。
3、注册开发者账户之后选择[非交易者],点击[账户] -> 绑定[联系电子邮件地址] 绑定完成后到网页底部勾选开启所有通知并点击[保持更改]
Standard manifest file example
1、manifest.json
This is a sample standard Google extension manifest file demo that can be used as a reference.
| parameter | illustrate |
|---|---|
version_name |
If the value is [1.8 npy], login and payment will not be displayed. However, login and payment can be initiated through custom payment. "npy" means "NoPay," which disables payment. If you are a beginner and don't understand, you can choose to do nothing and use the default value. |
homepage_url |
If the value includes `uninstall_url`, the user will be redirected to this link after uninstallation; otherwise, it uses the default `homepage_url` function as defined in Google's official documentation. |
author |
`author=appid` is a required field. Each extension must have a unique `appid`, primarily used to identify which extension it belongs to. The `appid` name format is: [Author Name_Extension Name_Three Numbers]. `appid` only supports lowercase letters and numbers, and must be distinguished by the underscores above. |
__MSG_app_name__ |
This name is a system default value and cannot be customized. |
__MSG_app_short_name__ |
This name is a system default value and cannot be customized. |
__MSG_app_description__ |
This name is a system default value and cannot be customized. |
2、_locales\zh_CN\messages.json
This is a sample standard Google extension multilingual file demo. The formatting below can be automatically translated and can be used as a reference.
| parameter | illustrate |
|---|---|
app_name |
The name app_name is a fixed default value set by the system and cannot be customized. |
app_short_name |
The name app_short_name is a fixed default value set by the system and cannot be customized. |
app_description |
The name `app_description` is a fixed default value set by the system and cannot be customized. |
Custom payment_Web
自定义支付是高级玩法,如果你是初级玩家请忽略!通过浏览器扩展content.js注入到网页之中,在被注入网页中拉起支付示例: Click to download the demo source code.正常情况下当用户点击Web中扩展注入的按钮,可以直接使用功能:
当我们加入Web拉起支付,就像下方代码一样写
Custom payment_Popup
自定义支付是高级玩法,如果你是初级玩家请忽略!通过浏览器扩展popup页面中,通过js拉起支付示例: Click to download the demo source code.正常情况下当用户点击Popup中的按钮,可以直接使用功能:
当我们加入Popup拉起支付,就像下方代码一样写,其中showVipDialog()方法是用户使用Ai生成的弹窗页面,该页面用于弹窗用户当前并非会员是否充值会员,下方有两个按钮:1[充值会员] -> 2[继续使用免费功能]