Compare commits
2 Commits
6fef043a10
...
5708a8d9a0
| Author | SHA1 | Date |
|---|---|---|
|
|
5708a8d9a0 | 4 months ago |
|
|
af7be11eb2 | 4 months ago |
@ -1,3 +1,4 @@
|
|||||||
*.swp
|
*.swp
|
||||||
dist
|
dist
|
||||||
node_modules
|
node_modules
|
||||||
|
redmine-reactions.pem
|
||||||
|
|||||||
@ -0,0 +1,18 @@
|
|||||||
|
Build
|
||||||
|
=====
|
||||||
|
|
||||||
|
docker-compose run --rm builder npm run build:chrome
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
docker-compose run --rm builder npm run build:firefox
|
||||||
|
|
||||||
|
Signed
|
||||||
|
======
|
||||||
|
|
||||||
|
Needs AMO API key from Mozilla.
|
||||||
|
|
||||||
|
docker-compose run --rm \
|
||||||
|
-e AMO_JWT_ISSUER="$USER" \
|
||||||
|
-e AMO_JWT_SECRET="$SECRET" \
|
||||||
|
builder npm run package:firefox-signed
|
||||||
@ -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