百分浏览器论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
热搜: 活动 交友 discuz
查看: 1878|回复: 2

[BUG] 开发者模式下百分浏览器加载拓展manifest.json失败

[复制链接]
匿名  发表于 2022-5-6 17:26:58 |阅读模式
以开发者模式加载已解压缩的拓展,在百分浏览器上报错:

```
  未能成功加载扩展程序
  Invalid value for 'web_accessible_resources[0]'.
```

该解压缩拓展在其他Chromium内核浏览器如Chrome、Edge上能够成功被加载。

manifest.json文件:

```json
{
    "name": "A-Soul 浏览器宠物",
    "version": "0.3",
    "description": "在浏览器里养一只A-Soul成员当宠物。",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "./static/icon/icon_16.png",
            "32": "./static/icon/icon_32.png",
            "48": "./static/icon/icon_48.png",
            "128": "./static/icon/icon_128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "<all_urls>"
            ],
            "js": [
                "./lib/jquery.min.js",
                "./lib/drag-on-drop.js",
                "./lib/anime.min.js",
                "index.js"
            ],
            "css": [
                "./css/style.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "/static/img/*",
                "/static/message.json"
            ],
            "matches": [
                "<all_urls>"
            ]
        }
    ],
    "icons": {
        "16": "./static/icon/icon_16.png",
        "32": "./static/icon/icon_32.png",
        "48": "./static/icon/icon_48.png",
        "128": "./static/icon/icon_128.png"
    }
}


```


拓展链接:Github: ZiuChen/A-Soul-Browser-Pet
回复

使用道具

7

主题

6715

回帖

1万

积分

超级版主

(^^ゞ

Rank: 8Rank: 8

积分
19091
发表于 2022-5-6 17:47:07 | 显示全部楼层
"manifest_version": 3,


需要 Chromium 版本大于 88 才能支持。
¯\(°_o)/¯
回复

使用道具 举报

匿名  发表于 2022-5-6 22:43:42
S8F8ry 发表于 2022-5-6 17:47
需要 Chromium 版本大于 88 才能支持。

好的,谢谢您的回复!
回复

使用道具

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

Archiver|手机版|小黑屋|百分浏览器论坛

GMT+8, 2024-5-23 17:01 , Processed in 0.053673 second(s), 18 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表