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

This is not the latest version of Progressive Web Apps for Firefox available.

  • 1
  • 2
  • 3

1.4.2 | Updated: 02 Jun 2022

Downloads:

10,064

Downloads of v 1.4.2:

269

Maintainer(s):

Software Author(s):

  • filips

Progressive Web Apps for Firefox 1.4.2

This is not the latest version of Progressive Web Apps for Firefox available.

  • 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'" --version="'1.4.2'" [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'" --version="'1.4.2'" 
$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: '1.4.2'
    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  '1.4.2'
end

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


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

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


package { 'firefoxpwa':
  ensure   => '1.4.2',
  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 02 Jun 2022.

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.

legal\LICENSE.txt
From: https://github.com/filips123/PWAsForFirefox#license

LICENSE

The project is licensed under the Mozilla Public License 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 license text.

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

The project also uses additional third-party assets and code:

- 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.

- Native programs contain the Metropolis Semi Bold <https://fontsarena.com/metropolis-by-chris-simpson/>
  typeface 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 the 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.
legal\VERIFICATION.txt
VERIFICATION

I am the author of the PWAs for Firefox 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-1.4.2-x86.msi) = ec4635ef6805c2491f01fefc698ebca229dfae1c018c53d9e41a5ddce6330456
SHA256 (firefoxpwa-1.4.2-x86_64.msi) = 29588b938376cdfd657afa8a2247468eff36466fc7cef50f0737c8afabce9198
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-1.4.2-x86.msi
md5: 21B048D29F58D2B79A4F610F3303B637 | sha1: 48B24B4652F92AD4EDD069A209AD5F462F4C3024 | sha256: EC4635EF6805C2491F01FEFC698EBCA229DFAE1C018C53D9E41A5DDCE6330456 | sha512: EC40539B232531792EE55ED319E64936D34F02FDD1B1385D492E3B9BD21F5D3135F69191B2BFE99DD72BF553C5D3AA2681198ECB593327420758B30F56FEAA7C
tools\firefoxpwa-1.4.2-x86_64.msi
md5: 52B401C13EDDFF859FFB14E61294C83D | sha1: 9C650E3C7A319473FB1C2F6EFB57A5E997FA3B9B | sha256: 29588B938376CDFD657AFA8A2247468EFF36466FC7CEF50F0737C8AFABCE9198 | sha512: 82047E43DBE882DA247D06A8AC176E04A68277824005171F121A2A65BD9CF7A9E2540C70FD1DEC526B471B597128D4BC0E415621E3565AD0571B9DEBF5633877

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.1 597 Wednesday, March 20, 2024 Approved
Progressive Web Apps for Firefox 2.11.0 101 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 44 Monday, January 22, 2024 Approved
Progressive Web Apps for Firefox 2.9.1 442 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 586 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 94 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 282 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 456 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 359 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 201 Monday, September 5, 2022 Approved
Progressive Web Apps for Firefox 2.0.2 257 Monday, August 8, 2022 Approved
Progressive Web Apps for Firefox 2.0.1 160 Sunday, July 31, 2022 Approved
Progressive Web Apps for Firefox 1.4.2 269 Thursday, June 2, 2022 Approved
Progressive Web Apps for Firefox 1.4.1 66 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 99 Monday, December 20, 2021 Approved
Progressive Web Apps for Firefox 1.3.1 86 Wednesday, December 8, 2021 Approved
Progressive Web Apps for Firefox 1.3.0 80 Tuesday, December 7, 2021 Approved
FirefoxPWA 1.2.2 94 Sunday, December 5, 2021 Approved
FirefoxPWA 1.2.1 178 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