Skip to content

Commit 3650d65

Browse files
committed
test: update example to use manifest v3
Chromium does not allow v2 anymore, and was rejecting example extension.
1 parent 4b99cf5 commit 3650d65

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

example/example-extension.crx

2 Bytes
Binary file not shown.

example/example-extension.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<gupdate xmlns="http://www.google.com/update2/response" protocol="2.0">
33
<app appid="oldmflkhpnhejcakhabdmkjafmccabek">
4-
<updatecheck codebase="http://127.0.0.1:8080/example-extension.crx" version="1.0" prodversionmin="64.0.3242" />
4+
<updatecheck codebase="http://127.0.0.1:8080/example-extension.crx" version="1.0" prodversionmin="126" />
55
</app>
66
</gupdate>

example/example-extension.zip

2 Bytes
Binary file not shown.

example/example-extension/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "Example That Does Nothing",
33
"version": "1.0",
44
"description": "Create a better one!",
5-
"manifest_version": 2,
6-
"minimum_chrome_version": "60",
5+
"manifest_version": 3,
6+
"minimum_chrome_version": "126",
77
"content_scripts": [
88
{
99
"matches": ["http://127.0.0.1:8080/*"],

0 commit comments

Comments
 (0)