-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathchromium.json
More file actions
54 lines (54 loc) 路 1.83 KB
/
Copy pathchromium.json
File metadata and controls
54 lines (54 loc) 路 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"##": "Check chromium.woolyss.com for different versions of Chromium releases.",
"version": "147.0.7727.138-r1596535",
"description": "Browser aiming for safer, faster, and more stable way for all users to experience the web.",
"homepage": "https://www.chromium.org",
"license": "BSD-3-Clause",
"architecture": {
"64bit": {
"url": "https://github.com/Hibbiki/chromium-win64/releases/download/v147.0.7727.138-r1596535/chrome.7z",
"hash": "sha1:3f4d17ba214933b977a126151b3d9f6f99719a16"
}
},
"extract_dir": "Chrome-bin",
"bin": [
[
"chrome.exe",
"chromium",
"--user-data-dir=\"$dir\\User Data\""
]
],
"shortcuts": [
[
"chrome.exe",
"Chromium",
"--user-data-dir=\"$dir\\User Data\""
]
],
"post_install": [
"if (!(Test-Path \"$dir\\User Data\\*\") -and (Test-Path \"$env:LocalAppData\\Chromium\\User Data\")) {",
" info '[Portable Mode]: Copying user data...'",
" Copy-Item \"$env:LocalAppData\\Chromium\\User Data\\*\" \"$dir\\User Data\" -Recurse",
"}"
],
"env_set": {
"CHROME_EXECUTABLE": "$dir\\chrome.exe"
},
"persist": "User Data",
"checkver": {
"github": "https://api.github.com/repos/Hibbiki/chromium-win64/tags",
"jsonpath": "$..name",
"regex": "v([\\d.\\-r]+)"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/Hibbiki/chromium-win64/releases/download/v$version/chrome.7z",
"hash": {
"url": "https://github.com/Hibbiki/chromium-win64/releases/tag/v$version",
"regex": "$sha1 \\.\\./out/x64/chrome.7z"
}
}
}
}
}