Elevate your OpenAi Playground experience.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Playground Thing",
"description": "Elevate your OpenAi Playground experience.",
"version": "1.1",
"author": "Matěj Pešl",
"icons": {
"16": "assets/icons/icon16.png",
"32": "assets/icons/icon32.png",
"128": "assets/icons/icon128.png"
},
"action": {
"default_icon": "./assets/icons/icon16.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://platform.openai.com/playground?mode=chat"
],
"js": [
"scripts/content_script.js"
]
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+U",
"mac": "Command+U"
}
}
}
}