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; [
|
||||
auto-refresh-page
|
||||
bitwarden
|
||||
checkmarks-web-ext
|
||||
darkreader
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
[
|
||||
{
|
||||
"pname": "sound-volume",
|
||||
"slug": "600-sound-volume"
|
||||
"slug": "auto-refresh-page"
|
||||
},
|
||||
{
|
||||
"pname": "bitwarden",
|
||||
|
@ -35,6 +34,10 @@
|
|||
{
|
||||
"slug": "return-youtube-dislikes"
|
||||
},
|
||||
{
|
||||
"pname": "sound-volume",
|
||||
"slug": "600-sound-volume"
|
||||
},
|
||||
{
|
||||
"slug": "sponsorblock"
|
||||
},
|
||||
|
|
|
@ -4,6 +4,29 @@
|
|||
lib,
|
||||
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 {
|
||||
pname = "bitwarden";
|
||||
version = "2024.6.3";
|
||||
|
|
Loading…
Reference in a new issue