feat(firefox): add auto-refresh addon
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
2ceaaeff76
commit
702f0a4d64
3 changed files with 78 additions and 51 deletions
|
@ -196,6 +196,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
extensions = with firefoxAddons; [
|
extensions = with firefoxAddons; [
|
||||||
|
auto-refresh-page
|
||||||
bitwarden
|
bitwarden
|
||||||
checkmarks-web-ext
|
checkmarks-web-ext
|
||||||
darkreader
|
darkreader
|
||||||
|
|
|
@ -1,54 +1,57 @@
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"pname": "sound-volume",
|
"slug": "auto-refresh-page"
|
||||||
"slug": "600-sound-volume"
|
},
|
||||||
},
|
{
|
||||||
{
|
"pname": "bitwarden",
|
||||||
"pname": "bitwarden",
|
"slug": "bitwarden-password-manager"
|
||||||
"slug": "bitwarden-password-manager"
|
},
|
||||||
},
|
{
|
||||||
{
|
"slug": "checkmarks-web-ext"
|
||||||
"slug": "checkmarks-web-ext"
|
},
|
||||||
},
|
{
|
||||||
{
|
"slug": "darkreader"
|
||||||
"slug": "darkreader"
|
},
|
||||||
},
|
{
|
||||||
{
|
"slug": "floccus"
|
||||||
"slug": "floccus"
|
},
|
||||||
},
|
{
|
||||||
{
|
"slug": "google-container"
|
||||||
"slug": "google-container"
|
},
|
||||||
},
|
{
|
||||||
{
|
"slug": "istilldontcareaboutcookies"
|
||||||
"slug": "istilldontcareaboutcookies"
|
},
|
||||||
},
|
{
|
||||||
{
|
"slug": "image-search-options",
|
||||||
"slug": "image-search-options",
|
"license": {
|
||||||
"license": {
|
"tag": "predefined",
|
||||||
"tag": "predefined",
|
"shortName": "mpl11"
|
||||||
"shortName": "mpl11"
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"slug": "opera-gx-witchcraft-purple"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"slug": "return-youtube-dislikes"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pname": "sound-volume",
|
||||||
|
"slug": "600-sound-volume"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"slug": "sponsorblock"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pname": "stylus",
|
||||||
|
"slug": "styl-us"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"slug": "ttv-lol-pro"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"slug": "ublock-origin"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"slug": "undoclosetabbutton"
|
||||||
}
|
}
|
||||||
},
|
|
||||||
{
|
|
||||||
"slug": "opera-gx-witchcraft-purple"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"slug": "return-youtube-dislikes"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"slug": "sponsorblock"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"pname": "stylus",
|
|
||||||
"slug": "styl-us"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"slug": "ttv-lol-pro"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"slug": "ublock-origin"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"slug": "undoclosetabbutton"
|
|
||||||
}
|
|
||||||
]
|
]
|
||||||
|
|
|
@ -4,6 +4,29 @@
|
||||||
lib,
|
lib,
|
||||||
stdenv,
|
stdenv,
|
||||||
}: {
|
}: {
|
||||||
|
"auto-refresh-page" = buildFirefoxXpiAddon {
|
||||||
|
pname = "auto-refresh-page";
|
||||||
|
version = "3.2";
|
||||||
|
addonId = "{da35dad8-f912-4c74-8f64-c4e6e6d62610}";
|
||||||
|
url = "https://addons.mozilla.org/firefox/downloads/file/4064190/auto_refresh_page-3.2.xpi";
|
||||||
|
sha256 = "e703d1031107bb440e3081b210e58ebf5a05a620683e42ce6255b66994475f8d";
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://www.hashtap.com/@refresh";
|
||||||
|
description = "Refresh web pages automatically. Auto-refresh and page monitor with specified time intervals.";
|
||||||
|
license = licenses.mit;
|
||||||
|
mozPermissions = [
|
||||||
|
"tabs"
|
||||||
|
"storage"
|
||||||
|
"contextMenus"
|
||||||
|
"browsingData"
|
||||||
|
"notifications"
|
||||||
|
"webRequest"
|
||||||
|
"webRequestBlocking"
|
||||||
|
"<all_urls>"
|
||||||
|
];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
};
|
||||||
"bitwarden" = buildFirefoxXpiAddon {
|
"bitwarden" = buildFirefoxXpiAddon {
|
||||||
pname = "bitwarden";
|
pname = "bitwarden";
|
||||||
version = "2024.6.3";
|
version = "2024.6.3";
|
||||||
|
|
Loading…
Reference in a new issue