Add files via upload

This commit is contained in:
Yûki VACHOT 2022-09-04 18:39:13 +02:00 committed by GitHub
parent cf5f79c223
commit 28c1ebbacf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 59 additions and 22 deletions

View file

@ -1,13 +1,22 @@
{
"name": "DofusBook Atelier Bouton Copier",
"description": "Ajout d'un bouton pour copier chaque nom de ressource dans l'atelier de DofusBook",
"version": "1.0",
"version": "1.1.0",
"manifest_version": 3,
"content_scripts": [
{
"matches": ["https://www.dofusbook.net/fr/outils/atelier"],
"js": ["dofusbook.atelier.copy.js"],
"run_at": "document_end"
}
"icons": {
"16": "./icons/icon16.png",
"32": "./icons/icon32.png",
"48": "./icons/icon48.png",
"128": "./icons/icon128.png"
},
"permissions": [
"tabs",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"https://www.dofusbook.net/*"
]
}
}