Prompt Anywhere - Free Prompt Repository

1-Click prompt templates saving, copying, and editing on any website.

Co je Prompt Anywhere - Free Prompt Repository?

Prompt Anywhere - Free Prompt Repository je rozšíření Chrome vyvinuté Yule Tech, a jeho hlavní funkcí je „1-Click prompt templates saving, copying, and editing on any website.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Prompt Anywhere - Free Prompt Repository

Stáhněte si soubory rozšíření Prompt Anywhere - Free Prompt Repository ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        1-Click prompt templates saving, copying, and editing on any website. (Note: Login to the Prompt Anywhere account is required for first-time use.)
————————————————————
🎉👏 Welcome to Prompt Anywhere! This is a FREE prompt browser extension that can be used on major LLMs websites.

❌ No storage limit.
❌ No limit on the number of retrievals.
✅ Supports variable parameters.
✅ Supports multiple models.

💻 Enter "/" to instantly retrieve prompts from the repository.
⌨️ Shift + Alt + W can be used to retrieve prompts on any webpage.
☁️ Prompt storage in the cloud for cross-platform access in any model.
✏️ Create prompts and add variables.

Currently support: CharGPT, Claude, Stable Diffusion WebUI, Wenxin Yiyan, Tongyi Qianwen, and Xunfei Xinghuo models.

This update: fixed some bugs.

————————————————————

跨平台的提示词储存、调用、创建、学习。(提示:首次使用须登录Prompt Anywhere账号)

🎉 👏欢迎使用「Prompt Anywhere」!这是一个「完全免费」的提示词浏览器插件

💻 输入"/"一键调用仓库内的提示词
⌨️Shift + Alt + W可以在任意页面调用
🏠 不只支持chatGPT,支持国内外主流的大模型及任意页面
☁️ 云端存储提示词,跨平台在任意模型调用
✏️ 创建提示词并添加变量

❌没有储存上限
❌不限调用次数
✅支持变量参数
✅支持多款模型

已经适配:ChatGPT,Claude,Stable Diffusion WebUI,文心一言,通义千问,讯飞星火等主流模型。                    

Základní Informace o Rozšíření

Název Prompt Anywhere - Free Prompt Repository Prompt Anywhere - Free Prompt Repository
ID neblfjcafkcekbmjgmkpbjaahcmekpog
Oficiální URL https://chromewebstore.google.com/detail/prompt-anywhere-free-prom/neblfjcafkcekbmjgmkpbjaahcmekpog
Popis 1-Click prompt templates saving, copying, and editing on any website.
Velikost souboru 203 KB
Počet instalací 67
Aktuální Verze 1.1.2
Poslední Aktualizace 2023-09-05
Datum Vydání 2023-06-26
Hodnocení 4.00/5 Celkem 2 Hodnocení
Vývojář Yule Tech
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://wanzhou.chat/
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Prompt Anywhere - Free Prompt Repository",
    "description": "1-Click prompt templates saving, copying, and editing on any website.",
    "version": "1.1.2",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_icon": "assets\/logo192.png"
    },
    "icons": {
        "192": "assets\/logo192.png"
    },
    "permissions": [
        "cookies",
        "alarms",
        "storage"
    ],
    "commands": {
        "inject_anywhere": {
            "suggested_key": {
                "windows": "Alt+Shift+W",
                "chromeos": "Alt+Shift+W",
                "linux": "Alt+Shift+W",
                "mac": "Alt+Shift+W"
            },
            "description": "Inject on the current page."
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/logo192.png",
                "assets\/code-square.svg",
                "assets\/language.svg"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/wanzhou.chat\/",
        "*:\/\/*.wanzhou.chat\/"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/wanzhou.chat\/*",
                "*:\/\/*.wanzhou.chat\/*"
            ],
            "js": [
                "lib\/jquery-3.4.1.min.js",
                "tools.js",
                "general-script.js"
            ],
            "css": [
                "wz.css"
            ]
        },
        {
            "matches": [
                "*:\/\/chat.openai.com\/*",
                "*:\/\/bard.google.com\/*",
                "*:\/\/yiyan.baidu.com\/*",
                "*:\/\/qianwen.aliyun.com\/*",
                "*:\/\/xinghuo.xunfei.cn\/*"
            ],
            "js": [
                "activate-slash.js"
            ]
        },
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "chatgpt.js"
            ]
        },
        {
            "matches": [
                "*:\/\/wanzhou.chat\/*",
                "*:\/\/*.wanzhou.chat\/*"
            ],
            "js": [
                "lib\/jquery-3.4.1.min.js",
                "tools.js",
                "wanzhou.chat.js"
            ]
        }
    ],
    "background": {
        "service_worker": "service-worker.js"
    }
}