关于Google Chrome浏览器插件版本需求更改 #90
Labels
No Label
bug
crypto
duplicate
enhancement
help wanted
invalid
platform-android
platform-mac
platform-win
question
wontfix
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: um/web#90
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
name: "manifest_version更改"
about: "听Google Chrome说明,manifest_version 2似乎会在2024年底逐渐弃用,于是我自己更改了一些东西并将其适应到 manifest_version 3版本中"
title: "manifest_version 2 --> manifest_version 3 "
labels:https://developer.chrome.com/docs/extensions/develop/migrate/mv2-deprecation-timeline?hl=zh-cn#june_3_2024_the_manifest_v2_phase-out_begins
- enhancement
背景和说明
听Google Chrome说明,manifest_version 2似乎会在2024年底逐渐弃用,于是我自己更改了一些东西并将其适应到 manifest_version 3版本中
实现途径
这里献上我的模板,更改较小,但是适配成功
{
"manifest_version": 3,
"name": "音乐解锁",
"short_name": "音乐解锁",
"version": "1.10.7.0",
"version_name": "1.10.7",
"description": "在任何设备上解锁已购的加密音乐!",
"permissions": [
"storage",
"activeTab",
"scripting"
],
"action": {
"default_popup": "popup.html",
"default_icon": "favicon.ico"
},
"icons": {
"16": "./img/icons/favicon-16x16.png",
"32": "./img/icons/favicon-32x32.png",
"128": "./img/icons/msapplication-icon-144x144.png"
},
"host_permissions": [
"https://example.com/"
],
"offline_enabled": true,
"options_page": "./index.html",
"homepage_url": "https://git.unlock-music.dev/um/web"
}
附加信息