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

FirefoxPWA

This is not the latest version of FirefoxPWA available.

  • 1
  • 2
  • 3

0.5.0 | Updated: 03 Aug 2021

Downloads:

10,069

Downloads of v 0.5.0:

77

Maintainer(s):

Software Author(s):

  • filips

FirefoxPWA 0.5.0

This is not the latest version of FirefoxPWA available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install FirefoxPWA, run the following command from the command line or from PowerShell:

>

To upgrade FirefoxPWA, run the following command from the command line or from PowerShell:

>

To uninstall FirefoxPWA, 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="'0.5.0'" [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="'0.5.0'" 
$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: '0.5.0'
    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  '0.5.0'
end

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


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

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


package { 'firefoxpwa':
  ensure   => '0.5.0',
  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 by moderator flcdrg on 07 Aug 2021.

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 modifies Firefox 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 FirefoxPWA 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/FirefoxPWA#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/FirefoxPWA/blob/main/LICENSE>
in the project repository for the full license text.

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

The native part of the project includes the Metropolis Semi Bold typeface by Chris Simpson
<https://fontsarena.com/metropolis-by-chris-simpson/>, released into the public domain
using the Unlicense <https://unlicense.org/>.

Windows installer includes the Material Design Icons <https://materialdesignicons.com/>
by Austin Andrews and Google, licensed under the Apache 2.0 license <https://www.apache.org/licenses/LICENSE-2.0>.
Detailed license information can be found in the WiX configuration file in the project
repository <https://github.com/filips123/FirefoxPWA/blob/main/native/packages/wix/main.wxs>.

The project logo is based on the official Firefox browser logo <https://mozilla.design/firefox/logos-usage>
and the community-introduced PWA logo <https://github.com/webmaxru/progressive-web-apps-logo>.

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 author of the FirefoxPWA project.

For the current (0.5.0) release:

  Both installers are built automatically on every release using GitHub Actions from
  the project source, and added to a new GitHub release. The exact build steps can be
  found in the GitHub Actions workflow file in the repository. I manually downloaded
  the installers from the GitHub release and uploaded them to this package. I currently
  do not have checksums for Windows installers.

  This is the first version to be published on Chocolatey, so I used it as some kind of
  testing to see how package publishing works. Because of this. package-related files are
  not yet uploaded to the repository, and I manually downloaded the installers and uploaded
  them to this package. This will change with the future releases.

For future (1.0.0+) releases:

  I plan to automate updating and publishing Chocolatey package using GitHub Actions. After
  the initial (0.5.0) release is published to Chocolatey and I set up some other things, I
  will prepare updating and publishing, and pushed all Chocolatey-related things to GitHub.
  Things below are draft of how I plan to publish this package in the future.

  Both installers are built automatically on every release using GitHub Actions from
  the project source, published as workflow artifacts, and added to a new GitHub release.
  After the installers are built, another automated script will download installers from
  artifacts, automatically update the version in the `.nuspec` file, and publish new version
  to Chocolatey. The exact build and publishing steps can (will) be found in the GitHub
  Actions workflow file in the repository.
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-0.5.0-x86.msi
md5: A13F7AEAECCFE5352CFE75E306D6D337 | sha1: BE9169005F49E9412CB87871A84311904EA180DE | sha256: 8908698F83877FE2B329525FEB7A16B0A2FC572CBE8F66B5135799A10ADC4331 | sha512: 87D4296562C7AA1590CC2C2BC644C1DFD9E35B77D0D0A5EC9E6809442A3AFDE8A77D7675AF08FE68DBA8F18E0C6072FD19B713915D6014212ADB4F7269B4A39D
tools\firefoxpwa-0.5.0-x86_64.msi
md5: 681270C913F75D6A7316C50EB7E1D4E8 | sha1: B8A5CF6AD245044D06BD04343807DF732E8BC30C | sha256: 0CF8CF0BEA3E575AC89CBCFEB2CB7FC8379A1B730D59E59CA3465761A7AD604C | sha512: E80C7777BF776FAD185CA2D645E2A2265CE27BDA3004994BE84558828224A44AD64BC3378F98E83A99570AD70D19E4409A62BA6FAD1EB00FA9EC3D8951C23E82

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

Please read the release notes on the releases page of the repository.

Discussion for the FirefoxPWA Package

Ground Rules:

  • This discussion is only about FirefoxPWA and the FirefoxPWA 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 FirefoxPWA, 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