Files
Momento/memento-note/extension/dist-firefox/manifest.json
Antigravity 4946c0d44a
All checks were successful
CI / Lint, Unit Tests & Build (push) Successful in 5m44s
CI / Deploy production (on server) (push) Successful in 24s
fix(extension): permissions universelles Store + nettoyage article v0.4.5
- build-chrome-store.mjs / build-firefox.mjs : host_permissions et content_scripts matches
  passent à http://*/* + https://*/* au lieu de memento-note.com uniquement.
  Un Web Clipper a besoin d'accéder à tous les sites ; le manifest Store
  bloquait l'injection du content script sur n'importe quel article.
- extract-article.ts : refonte de cleanClipText en filtrage par ligne avec
  patterns élargis (mis à jour, temps de lecture, aujourd'hui à HH:MM,
  source - date, publié le, etc.).
- Bump version 0.4.5 dans manifest, locales, README et builds.
2026-07-18 17:04:25 +00:00

62 lines
1.2 KiB
JSON

{
"manifest_version": 3,
"name": "__MSG_extName__",
"version": "0.4.5",
"description": "__MSG_extDescription__",
"default_locale": "en",
"permissions": [
"activeTab",
"scripting",
"storage",
"sidePanel",
"tabs"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"content.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"action": {
"default_title": "__MSG_extActionTitle__",
"default_icon": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
},
"sidebar_action": {
"default_title": "__MSG_extActionTitle__",
"default_panel": "sidepanel.html",
"default_icon": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
},
"browser_specific_settings": {
"gecko": {
"id": "memento-clipper@memento-note.com",
"strict_min_version": "115.0"
}
},
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
}