@hexonet/semantic-release-whmcs 5.0.69 → 5.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/HISTORY.md +35 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/LICENSE +14 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/_locales/en/messages.json +160 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/_metadata/generated_indexed_rulesets/_ruleset1 +0 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/background.html +2 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/background.js +681 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/css/common.css +14306 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/hotreload.js +43 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/js/0_defaultClickHandler.js +590 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/js/2_sessionStorageHandler.js +30 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/js/3_localStorageHandler.js +243 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/js/5_clickHandler.js +8523 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/js/6_cookieHandler.js +764 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/js/8_googleHandler.js +105 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/js/embedsHandler.js +107 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/menu/index.html +79 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/menu/script.js +161 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/menu/spinner.svg +12 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/menu/style.css +68 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/options.html +42 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/options.js +63 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/data/rules.js +20684 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/icons/128.png +0 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/icons/16.png +0 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/icons/32.png +0 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/icons/48.png +0 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/manifest.json +47 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/manifest_v2.json +46 -0
- package/extensions/I-Still-Dont-Care-About-Cookies/rules.json +19539 -0
- package/lib/delete-marketplace-version.js +82 -31
- package/lib/publish.js +52 -43
- package/lib/puppet-utils.js +145 -0
- package/lib/puppet.js +68 -41
- package/lib/resolve-config.js +1 -0
- package/lib/set-compatible-versions.js +26 -10
- package/package.json +6 -6
- package/whmcs.js +7 -5
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"update_url": "https://clients2.google.com/service/update2/crx",
|
3
|
+
"manifest_version": 3,
|
4
|
+
"name": "__MSG_extensionName__",
|
5
|
+
"description": "__MSG_extensionDescription__",
|
6
|
+
"default_locale": "en",
|
7
|
+
"version": "1.1.4",
|
8
|
+
"icons": {
|
9
|
+
"16": "icons/16.png",
|
10
|
+
"48": "icons/48.png",
|
11
|
+
"128": "icons/128.png"
|
12
|
+
},
|
13
|
+
"author": "OhMyGuus and Community (originally Daniel Kladnik)",
|
14
|
+
"permissions": [
|
15
|
+
"tabs",
|
16
|
+
"storage",
|
17
|
+
"notifications",
|
18
|
+
"webRequest",
|
19
|
+
"declarativeNetRequestWithHostAccess",
|
20
|
+
"webNavigation",
|
21
|
+
"scripting"
|
22
|
+
],
|
23
|
+
"host_permissions": ["http://*/*", "https://*/*"],
|
24
|
+
"background": {
|
25
|
+
"service_worker": "data/background.js",
|
26
|
+
"type": "module"
|
27
|
+
},
|
28
|
+
"options_ui": {
|
29
|
+
"page": "data/options.html"
|
30
|
+
},
|
31
|
+
"action": {
|
32
|
+
"default_popup": "data/menu/index.html",
|
33
|
+
"default_icon": {
|
34
|
+
"16": "icons/16.png",
|
35
|
+
"32": "icons/32.png"
|
36
|
+
}
|
37
|
+
},
|
38
|
+
"declarative_net_request": {
|
39
|
+
"rule_resources": [
|
40
|
+
{
|
41
|
+
"id": "ruleset_1",
|
42
|
+
"enabled": true,
|
43
|
+
"path": "rules.json"
|
44
|
+
}
|
45
|
+
]
|
46
|
+
}
|
47
|
+
}
|
@@ -0,0 +1,46 @@
|
|
1
|
+
{
|
2
|
+
"manifest_version": 2,
|
3
|
+
"name": "__MSG_extensionName__",
|
4
|
+
"default_locale": "en",
|
5
|
+
"version": "1.1.4",
|
6
|
+
"icons": {
|
7
|
+
"16": "icons/16.png",
|
8
|
+
"48": "icons/48.png",
|
9
|
+
"128": "icons/128.png"
|
10
|
+
},
|
11
|
+
"browser_specific_settings": {
|
12
|
+
"gecko": {
|
13
|
+
"id": "idcac-pub@guus.ninja",
|
14
|
+
"strict_min_version": "42.0"
|
15
|
+
},
|
16
|
+
"gecko_android": {
|
17
|
+
"id": "idcac-pub@guus.ninja",
|
18
|
+
"strict_min_version": "78.0"
|
19
|
+
}
|
20
|
+
},
|
21
|
+
"author": "OhMyGuus and Community (originally Daniel Kladnik)",
|
22
|
+
"permissions": [
|
23
|
+
"tabs",
|
24
|
+
"storage",
|
25
|
+
"http://*/*",
|
26
|
+
"https://*/*",
|
27
|
+
"notifications",
|
28
|
+
"webRequest",
|
29
|
+
"webRequestBlocking",
|
30
|
+
"webNavigation"
|
31
|
+
],
|
32
|
+
"background": {
|
33
|
+
"page": "data/background.html"
|
34
|
+
},
|
35
|
+
"options_ui": {
|
36
|
+
"page": "data/options.html",
|
37
|
+
"chrome_style": true
|
38
|
+
},
|
39
|
+
"browser_action": {
|
40
|
+
"default_popup": "data/menu/index.html",
|
41
|
+
"default_icon": {
|
42
|
+
"16": "icons/16.png",
|
43
|
+
"32": "icons/32.png"
|
44
|
+
}
|
45
|
+
}
|
46
|
+
}
|