Remove manifest.json
article thumbnail

Docker Manifest – A Peek Into Image’s Manifest.json Files

Dzone - DevOps

Docker Manifest – An Experimental Feature! The image manifest provides a configuration and a set of layers for a container image. This is an experimental feature. To enable this feature in the Docker CLI, one can edit the config.json file found in ~/.docker/config.json docker/config.json like :

DevOps 101
article thumbnail

How to Use Storage in Web Extensions

David Walsh

To enable the storage API, you need to cite it in the manifest.json file of your extension: { // more. Adding storage to the permissions array, which is a top level manifest.json key, provides session and local storage capabilities to your extension. The extension storage API isn’t available by default.

Storage 103
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Trending Sources

article thumbnail

How to Inject a Global with Web Extensions in Manifest V3

David Walsh

As of Chrome v102 , developers can define a world property with a value of isolated or main (in the page) for content scripts. is injected and executed within the main content tab every time a new page is loaded.

How To 98
article thumbnail

Continuous deployment for progressive web applications

CircleCI

In the home page file above, we link to three files: manifest.json which we will use to set up the Add to Home Screen PWA feature, styles.css to apply some basic styling to our page, and app.js Let’s wrap up our demo application by creating our manifest.json file at the root of the project. Below is the code in my manifest.json file.

article thumbnail

Run dbt tests in parallel with CI/CD

CircleCI

The dbt CI process uses dbt’s state:modified run method to run and test only modified dbt data models using the production environment. commands: setup-python-dependencies: description: Setup the python environment for testing and linting steps: - checkout: path: ~/project - restore_cache: keys: - v1-poetry-cache-{{ arch }}-{{.Branch

Testing 98
article thumbnail

Continuous integration for progressive web apps

CircleCI

This file also references a manifest.json file (to configure our PWA for installation), a styles.css file for some basic styling, and an app.js Welcome to my Progressive Web Application. In the file above, we have a typical HTML page with a title that reads “My PWA Application” and a welcome message.

article thumbnail

Cracking the customer engagement game with Progressive Web Apps

Coforge

It is easily discoverable: A PWA enjoys the best of both worlds as it is identified as an “application” by manifest.json file and service worker registration while being easily discoverable by search engines also.

Games 40