dotfiles/pkgs/firefox-addons/generated.nix

66 lines
2.5 KiB
Nix
Raw Normal View History

{ buildFirefoxXpiAddon, fetchurl, lib, stdenv }:
{
"fastforwardteam" = buildFirefoxXpiAddon {
pname = "fastforwardteam";
2024-05-17 19:38:57 +07:00
version = "0.2383";
addonId = "addon@fastforward.team";
2024-05-17 19:38:57 +07:00
url = "https://addons.mozilla.org/firefox/downloads/file/4258067/fastforwardteam-0.2383.xpi";
sha256 = "eec6328df3df1afe2cb6a331f6907669d804235551ea766d48655f8f831caf28";
meta = with lib;
{
homepage = "https://fastforward.team";
description = "Don't waste time with compliance. Use FastForward to skip annoying URL \"shorteners\".";
mozPermissions = [
"alarms"
"storage"
"webNavigation"
"tabs"
"declarativeNetRequestWithHostAccess"
"<all_urls>"
2024-03-19 15:30:38 +07:00
];
platforms = platforms.all;
};
2024-03-19 15:30:38 +07:00
};
"rikaitan" = buildFirefoxXpiAddon {
pname = "rikaitan";
2024-05-17 19:38:57 +07:00
version = "24.5.21.0";
addonId = "tatsu@autistici.org";
2024-05-17 19:38:57 +07:00
url = "https://addons.mozilla.org/firefox/downloads/file/4291845/rikaitan-24.5.21.0.xpi";
sha256 = "a2a94d88af04023f14daaafda1f6ca7a7197f2ab92ada08ee2e9e4292d57a391";
meta = with lib;
{
homepage = "https://github.com/Ajatt-Tools/rikaitan";
2024-01-27 03:57:21 +07:00
description = "Japanese dictionary with Anki integration and flashcard creation support.";
license = licenses.gpl3;
mozPermissions = [
"storage"
"clipboardWrite"
"unlimitedStorage"
2024-01-27 03:57:21 +07:00
"declarativeNetRequest"
"scripting"
"http://*/*"
"https://*/*"
"file://*/*"
2024-03-19 15:30:38 +07:00
];
2023-02-20 00:49:39 +07:00
platforms = platforms.all;
};
2024-03-19 15:30:38 +07:00
};
"youtube-nonstop" = buildFirefoxXpiAddon {
pname = "youtube-nonstop";
2023-11-21 04:46:52 +07:00
version = "0.9.2";
addonId = "{0d7cafdd-501c-49ca-8ebb-e3341caaa55e}";
2023-11-21 04:46:52 +07:00
url = "https://addons.mozilla.org/firefox/downloads/file/4187690/youtube_nonstop-0.9.2.xpi";
sha256 = "7659d180f76ea908ea81b84ed9bdd188624eaaa62b88accbe6d8ad4e8caeff38";
meta = with lib;
{
homepage = "https://github.com/lawfx/YoutubeNonStop";
description = "Tired of getting that \"Video paused. Continue watching?\" confirmation dialog?\nThis extension autoclicks it, so you can listen to your favorite music uninterrupted.\n\nWorking on YouTube and YouTube Music!";
license = licenses.mit;
mozPermissions = [
"https://www.youtube.com/*"
"https://music.youtube.com/*"
2024-03-19 15:30:38 +07:00
];
platforms = platforms.all;
};
2024-03-19 15:30:38 +07:00
};
}