mirror of
https://github.com/mue/mue.git
synced 2026-06-05 23:45:53 +02:00
- fix version-bump.yml: IS_PRERELEASE was never defined, breaking iterative beta versioning (7.x.x-beta.1 → 7.x.x-beta.2) - fix hotfix-release.yml: move changelog generation before merge so git log captures commits correctly - fix dependabot.yml: was empty; now targets dev branch to keep Dependabot PRs in the normal dev→beta→main flow - fix automerge.yml: remove continue-on-error from lint step so lint failures block Dependabot auto-merge; pin bun-version to 1.3.1 - fix production-release.yml: add automated back-merge of main→beta and main→dev after each production release - fix manifest/chrome.json and manifest/firefox.json: version was 7.6.0, mismatched package.json 7.6.1 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
25 lines
538 B
JSON
25 lines
538 B
JSON
{
|
|
"manifest_version": 3,
|
|
"offline_enabled": true,
|
|
"default_locale": "en",
|
|
"name": "__MSG_name__",
|
|
"description": "__MSG_description__",
|
|
"version": "7.6.1",
|
|
"homepage_url": "https://muetab.com",
|
|
"permissions": ["search", "bookmarks"],
|
|
"action": {
|
|
"default_icon": "icons/128x128.png"
|
|
},
|
|
"chrome_url_overrides": {
|
|
"newtab": "index.html"
|
|
},
|
|
"icons": {
|
|
"16": "icons/16x16.png",
|
|
"48": "icons/48x48.png",
|
|
"128": "icons/128x128.png"
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
}
|
|
}
|