add firefox support
parent
6fef043a10
commit
434007ce68
@ -1 +1,3 @@
|
|||||||
VITE_API_BASE_URL=https://redmine-reactions.marinkevich.ru
|
VITE_API_BASE_URL=https://redmine-reactions.marinkevich.ru
|
||||||
|
AMO_JWT_ISSUER=
|
||||||
|
AMO_JWT_SECRET=
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
*.swp
|
*.swp
|
||||||
dist
|
dist
|
||||||
node_modules
|
node_modules
|
||||||
|
redmine-reactions.pem
|
||||||
|
|||||||
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"manifest_version": 3,
|
||||||
|
"name": "Redmine Reactions",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"description": "Добавляет реакции на комментарии в локальном Redmine.",
|
||||||
|
"permissions": ["storage"],
|
||||||
|
"icons": {
|
||||||
|
"128": "public/icon.png"
|
||||||
|
},
|
||||||
|
"content_scripts": [
|
||||||
|
{
|
||||||
|
"matches": ["https://red.eltex.loc/issues/*"],
|
||||||
|
"js": ["src/content.tsx"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"manifest_version": 3,
|
||||||
|
"name": "Redmine Reactions",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"description": "Добавляет реакции на комментарии в локальном Redmine.",
|
||||||
|
"permissions": [
|
||||||
|
"storage",
|
||||||
|
"https://your-domain.com/*"
|
||||||
|
],
|
||||||
|
"icons": {
|
||||||
|
"128": "public/icon.png"
|
||||||
|
},
|
||||||
|
"content_scripts": [
|
||||||
|
{
|
||||||
|
"matches": ["https://red.eltex.loc/issues/*"],
|
||||||
|
"js": ["src/content.tsx"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"browser_specific_settings": {
|
||||||
|
"gecko": {
|
||||||
|
"id": "reactions@your-company.com"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 22 KiB |
Loading…
Reference in New Issue