Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Progressive Web Apps for Firefox

  • 1
  • 2
  • 3

2.11.1 | Updated: 20 Mar 2024

Downloads:

9,876

Downloads of v 2.11.1:

569

Maintainer(s):

Software Author(s):

  • filips

Progressive Web Apps for Firefox 2.11.1

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Progressive Web Apps for Firefox, run the following command from the command line or from PowerShell:

>

To upgrade Progressive Web Apps for Firefox, run the following command from the command line or from PowerShell:

>

To uninstall Progressive Web Apps for Firefox, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade firefoxpwa -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade firefoxpwa -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install firefoxpwa
  win_chocolatey:
    name: firefoxpwa
    version: '2.11.1'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'firefoxpwa' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.11.1'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller firefoxpwa
{
    Name     = "firefoxpwa"
    Version  = "2.11.1"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'firefoxpwa':
  ensure   => '2.11.1',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 20 Mar 2024.

Description

A tool to install, manage and use Progressive Web Apps (PWAs) in Mozilla Firefox.

Progressive Web Apps (PWAs) are web apps that use web APIs and features along with progressive enhancement strategy to bring a native app-like user experience to cross-platform web applications. Although Firefox supports many of Progressive Web App APIs, it does not support functionality to install them as a standalone system app with an app-like experience.

This project creates a custom modified Firefox runtime to allow websites to be installed as standalone apps and provides a console tool and browser extension to install, manage and use them.

Features

  • Command-line tool to install, manage and run Progressive Web Apps in Firefox.
  • Extension to set up native programs, and install, manage and run PWAs and their profiles directly from the main Firefox browser.
  • Isolated Firefox installation and profile(s) that stores the PWAs.
  • Installed PWAs have their own start/app menu entry and taskbar icon, and live in their own window.
  • Installed PWAs have tabs and address bar for a better app-like feel.
  • Support for installing all websites as Progressive Web Apps.
  • Support for all Firefox addons/extensions and built-in Firefox features.
  • Support for automatic (user-triggered) installation and patching of installation and profile(s).

Notes

  • This package contains only the native part of the PWAsForFirefox project. You should also install the browser extension if you haven't already. You can download it from the Firefox Add-ons website.
  • This is an automatically updated package. If you find it is out of date by more than a day or two, please contact the maintainer(s) and let them know the package is no longer updating correctly.

tools\chocolateyinstall.ps1
$ErrorActionPreference = "Stop";

$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
$filePath32 = "$toolsPath\firefoxpwa-$($env:ChocolateyPackageVersion)-x86.msi"
$filePath64 = "$toolsPath\firefoxpwa-$($env:ChocolateyPackageVersion)-x86_64.msi"

$packageArgs = @{
    PackageName = "$($env:ChocolateyPackageName)"
    SoftwareName = "$($env:ChocolateyPackageTitle)"
    FileType = "msi"
    SilentArgs = "/quiet"
    File = $filePath32
    File64 = $filePath64
}

Install-ChocolateyInstallPackage @packageArgs
Remove-Item -Force $filePath32, $filePath64 -ea 0
tools\firefoxpwa-2.11.1-x86.msi
md5: AE4E4A06C3775A7A5502B2B8C98FAE08 | sha1: 24F9ADBD0F5F1315F4EC5C6FD3F342D251133B8A | sha256: 7BA632EE7C57FDD06B4D203B3FB65397C82352D4605E312D6634B6225F62EBFF | sha512: 48A98F23557C9EF07B81D20A551BDF5E77F900E42E45E3013D42CE88E2BEB6F9D88E25A0AFA5BC5E1352ABB022D14E79180FC2508933656FA63EB9DA52DD942B
tools\firefoxpwa-2.11.1-x86_64.msi
md5: 9E429AA0F716DE3730AFAF8EB677E3F7 | sha1: 639819DEB5F389E69B969540A2BE8A16A81FEF38 | sha256: 33F00FA6778F9B50D3A6E087CF662D741341324EB93F294E1F3985066BCB4BF6 | sha512: F44E94BE1A666520FA11A6DD5BD187782F5DC6855C63AA9270E87F794BF5CC6B18258CA919103DFB9FDA4B8A0F3D54B03AB63586AF356436DAEEF814842271AB
legal\VERIFICATION.txt
VERIFICATION

I am the author of the PWAsForFirefox project.

Both Windows installers are built automatically on every release using GitHub Actions from
the project source, published as workflow artifacts, and then added to a new GitHub release.
After the installers are built, another automated script downloads installers from artifacts,
automatically updates the version in the `.nuspec` file, calculates installer checksums and
saves them into this file, and publishes a new version to Chocolatey.

Installer checksums can be verified by downloading MSI installers from the correct GitHub
release on the repository, generating their SHA-256 checksums (for example, using sha256sum),
and comparing them to the checksums provided below.

The source for building and publishing process can be found in the GitHub Actions workflow
file for the native component in the GitHub repository.

INSTALLER CHECKSUMS

SHA256 (firefoxpwa-2.11.1-x86.msi) = 7ba632ee7c57fdd06b4d203b3fb65397c82352d4605e312d6634b6225f62ebff
SHA256 (firefoxpwa-2.11.1-x86_64.msi) = 33f00fa6778f9b50d3a6e087cf662d741341324eb93f294e1f3985066bcb4bf6
legal\LICENSE.txt
From: https://github.com/filips123/PWAsForFirefox#license

LICENSE

The project is licensed under the Mozilla Public License 2.0 <https://www.mozilla.org/MPL/2.0/>.
By using, redistributing, or modifying it, you must agree to the license, and the additional
clauses provided below. See the LICENSE file <https://github.com/filips123/PWAsForFirefox/blob/main/LICENSE>
in the project repository for the full MPL 2.0 license text.

The project uses additional third-party assets and code:

- The project logo is based on the "Fox SVG Vector" icon <https://www.svgrepo.com/svg/40267/fox>
  and the community-introduced PWA logo <https://github.com/webmaxru/progressive-web-apps-logo>,
  both dedicated to the public domain using CC0 <https://creativecommons.org/publicdomain/zero/1.0/>.

- Browser chrome modifications were inspired by and partially derived from the
  `xiaoxiaoflood/firefox-scripts` <https://github.com/xiaoxiaoflood/firefox-scripts>
  repository on GitHub, licensed under the Mozilla Public License 2.0. Detailed
  information can be found in the respective files.

- Browser chrome modifications partially use code derived from the `black7375/Firefox-UI-Fix`
  <https://github.com/black7375/Firefox-UI-Fix> repository on GitHub, licensed under the
  Mozilla Public License 2.0. Detailed information can be found in the respective files.

- Browser chrome modifications partially use code and icons derived from the original
  Firefox source <https://github.com/mozilla/gecko-dev>, licensed under the Mozilla Public
  License 2.0. Detailed information can be found in the respective files.

- Native programs contain the Metropolis Semi Bold typeface <https://fontsarena.com/metropolis-by-chris-simpson/>
  by Chris Simpson, released into the public domain using the Unlicense <https://unlicense.org/>.

- Windows installer contains Bootstrap Icons <https://icons.getbootstrap.com/>, licensed under the
  MIT License <https://opensource.org/licenses/MIT>. Detailed license information can be found in
  the WiX configuration file <https://github.com/filips123/PWAsForFirefox/blob/main/native/packages/wix/main.wxs>.

Additional open source software will be downloaded and installed at runtime when initiated by the user:

- Installing the runtime on Windows will install 7-Zip <https://7-zip.org/> if it is not
  already installed. The 7-Zip project is made by Igor Pavlov and licensed under the GNU
  LGPL license and others <https://7-zip.org/license.txt>. This project is not affiliated
  with the 7-Zip project or its developers in any way.

- Installing the runtime on any system will download the unmodified Mozilla Firefox
  <https://www.mozilla.org/firefox/>, and locally modify it. By using this project you also
  agree to the Firefox Privacy Notice <https://www.mozilla.org/privacy/firefox/>. Firefox is
  licensed under the Mozilla Public License 2.0. Firefox and the Firefox logo are trademarks
  of the Mozilla Foundation in the U.S. and other countries. This project is not affiliated
  with the Mozilla Foundation in any way.

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Progressive Web Apps for Firefox 2.11.0 100 Tuesday, March 19, 2024 Approved
Progressive Web Apps for Firefox 2.10.1 522 Monday, January 22, 2024 Approved
Progressive Web Apps for Firefox 2.10.0 42 Monday, January 22, 2024 Approved
Progressive Web Apps for Firefox 2.9.1 441 Saturday, December 9, 2023 Approved
Progressive Web Apps for Firefox 2.9.0 323 Sunday, November 19, 2023 Approved
Progressive Web Apps for Firefox 2.8.0 998 Sunday, October 1, 2023 Approved
Progressive Web Apps for Firefox 2.7.3 585 Thursday, August 3, 2023 Approved
Progressive Web Apps for Firefox 2.7.2 269 Tuesday, July 18, 2023 Approved
Progressive Web Apps for Firefox 2.7.1 81 Monday, July 17, 2023 Approved
Progressive Web Apps for Firefox 2.7.0 92 Sunday, July 16, 2023 Approved
Progressive Web Apps for Firefox 2.6.2 240 Saturday, July 1, 2023 Approved
Progressive Web Apps for Firefox 2.6.1 355 Saturday, June 3, 2023 Approved
Progressive Web Apps for Firefox 2.6.0 281 Thursday, May 18, 2023 Approved
Progressive Web Apps for Firefox 2.5.0 505 Sunday, March 26, 2023 Approved
Progressive Web Apps for Firefox 2.4.1 455 Tuesday, February 7, 2023 Approved
Progressive Web Apps for Firefox 2.4.0 294 Sunday, January 15, 2023 Approved
Progressive Web Apps for Firefox 2.3.0 254 Friday, December 30, 2022 Approved
Progressive Web Apps for Firefox 2.2.0 297 Saturday, December 3, 2022 Approved
Progressive Web Apps for Firefox 2.1.1 357 Sunday, October 9, 2022 Approved
Progressive Web Apps for Firefox 2.1.0 349 Monday, September 19, 2022 Approved
Progressive Web Apps for Firefox 2.0.3 200 Monday, September 5, 2022 Approved
Progressive Web Apps for Firefox 2.0.2 256 Monday, August 8, 2022 Approved
Progressive Web Apps for Firefox 2.0.1 158 Sunday, July 31, 2022 Approved
Progressive Web Apps for Firefox 1.4.2 267 Thursday, June 2, 2022 Approved
Progressive Web Apps for Firefox 1.4.1 65 Wednesday, June 1, 2022 Approved
Progressive Web Apps for Firefox 1.4.0 424 Monday, December 27, 2021 Approved
Progressive Web Apps for Firefox 1.3.2 98 Monday, December 20, 2021 Approved
Progressive Web Apps for Firefox 1.3.1 85 Wednesday, December 8, 2021 Approved
Progressive Web Apps for Firefox 1.3.0 80 Tuesday, December 7, 2021 Approved
FirefoxPWA 1.2.2 93 Sunday, December 5, 2021 Approved
FirefoxPWA 1.2.1 177 Friday, October 29, 2021 Approved
FirefoxPWA 1.2.0 97 Monday, October 25, 2021 Approved
FirefoxPWA 1.1.1 113 Friday, October 8, 2021 Approved
FirefoxPWA 1.1.0 178 Sunday, September 5, 2021 Approved
FirefoxPWA 1.0.0 99 Sunday, August 8, 2021 Approved
FirefoxPWA 0.5.0 77 Tuesday, August 3, 2021 Approved

You can read release notes on the repository releases page.


Discussion for the Progressive Web Apps for Firefox Package

Ground Rules:

  • This discussion is only about Progressive Web Apps for Firefox and the Progressive Web Apps for Firefox package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Progressive Web Apps for Firefox, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus