Skip to content

Commit

Permalink
ci(release): v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ivangabriele committed Nov 12, 2023
1 parent 11219b8 commit e3d4935
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 18 deletions.
29 changes: 21 additions & 8 deletions manifest.chrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "OpenAI Forge",
"description": "OpenAI Forge Browser Extension.",
"version": "0.2.0",
"version": "0.3.0",
"action": {
"default_popup": "popup.html"
},
Expand All @@ -12,15 +12,23 @@
},
"content_scripts": [
{
"matches": ["https://chat.openai.com/*"],
"css": ["content.css"],
"js": ["content.js"]
"matches": [
"https://chat.openai.com/*"
],
"css": [
"content.css"
],
"js": [
"content.js"
]
}
],
"content_security_policy": {
"extension_pages": "default-src 'self'; connect-src 'self' http://localhost:4242 ws://localhost:4242; img-src chrome-extension:;"
},
"host_permissions": ["https://chat.openai.com/*"],
"host_permissions": [
"https://chat.openai.com/*"
],
"icons": {
"16": "assets/icons/x16.png",
"32": "assets/icons/x16.png",
Expand All @@ -29,8 +37,13 @@
},
"web_accessible_resources": [
{
"resources": ["assets/icon.svg", "assets/icon-dark.svg"],
"matches": ["https://chat.openai.com/*"]
"resources": [
"assets/icon.svg",
"assets/icon-dark.svg"
],
"matches": [
"https://chat.openai.com/*"
]
}
]
}
}
33 changes: 24 additions & 9 deletions manifest.firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
"manifest_version": 3,
"name": "OpenAI Forge",
"description": "OpenAI Forge Browser Extension.",
"version": "0.2.0",
"version": "0.3.0",
"action": {
"default_popup": "popup.html"
},
"background": {
"scripts": ["background.js"],
"scripts": [
"background.js"
],
"type": "module"
},
"browser_specific_settings": {
Expand All @@ -21,16 +23,24 @@
},
"content_scripts": [
{
"matches": ["https://chat.openai.com/*"],
"css": ["content.css"],
"js": ["content.js"]
"matches": [
"https://chat.openai.com/*"
],
"css": [
"content.css"
],
"js": [
"content.js"
]
}
],
"developer": {
"name": "Ivan Gabriele",
"url": "https://www.ivangabriele.com"
},
"host_permissions": ["https://chat.openai.com/*"],
"host_permissions": [
"https://chat.openai.com/*"
],
"icons": {
"16": "assets/icons/x16.png",
"32": "assets/icons/x16.png",
Expand All @@ -39,8 +49,13 @@
},
"web_accessible_resources": [
{
"resources": ["assets/icon.svg", "assets/icon-dark.svg"],
"matches": ["https://chat.openai.com/*"]
"resources": [
"assets/icon.svg",
"assets/icon-dark.svg"
],
"matches": [
"https://chat.openai.com/*"
]
}
]
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "openai-forge-browser",
"description": "OpenAI Forge browser extension.",
"license": "AGPL-3.0-or-later",
"version": "0.2.0",
"version": "0.3.0",
"private": true,
"engines": {
"node": "20"
Expand Down

0 comments on commit e3d4935

Please sign in to comment.