Questions tagged [manifest.json]

The `manifest.json` file is a JSON -formatted file that give you the ability to control your application and is the only file that every WebExtension must contain.

Every extension has a JSON-formatted manifest file, named manifest.json, that provides important information like :

  • Version
  • Name
  • Description
  • Default locale
  • Icons
  • Developer
  • Type ...
555 questions
0
votes
1 answer

PWA share target - manifest is not refreshing

At first version of my pwa app I created manifest including share target "share_target": { "action": "/product/new", "method": "GET", "params": { "title": "title", "text": "text", "url": "url" } }, Everything was…
div
  • 3
  • 3
0
votes
0 answers

Why does my manifest.json trigger a lengthly review due to Broad Host Permissions?

The chrome webstore flags my extension as having "Broad Host Permissions", but I cannot figure out what in my manifest.json is causing this result. { "name": "AudioEye Smart Remediation Builder", "description": "Solve any issue of…
charlieb
  • 306
  • 3
  • 4
0
votes
1 answer

Chrome Extension failing to upload in Chrome Web Store developer dashboard

Long time listener, first time caller... I apologize if this has been answered, but I haven't been able to find it. I'm having a grand ole' time trying to work with Chrome's developer dashboard. The lovely error messages are so vague that they give…
0
votes
1 answer

how to add multiple apps using pwa (add to home screen)

I want to add or download multiple apps using pwa (add to home screen) eg: using www.example.com/value1 am able to add my app but while using www.example.com/value2 am not able to add my app how can I add multiple apps using pwa
0
votes
0 answers

Cached index.html content is wrapped in

maybe I didn't understand how this is supposed to work. But I followed the Google Guides for PWA on Desktop and can install the PWA fine. The only problem I have and couldn't find an answer for is, that the cached index.html is shown in plain text…
dscham
  • 547
  • 2
  • 10
0
votes
1 answer

CacheStorage in Rails PWA always empty. In service-worker.js cache.addAll doesn't seem to cache anything

After searching for days for some kind of solution, I have come up empty. My service-worker gets registered, installs, and activates without a problem, but the cache.addAll seems to fail silently. I am using a controller to serve the service-worker…
0
votes
1 answer

Progressive web app works on local setup, but on staging, Chrome console reads "Manifest: Line: 1, column: 1, Syntax error"

I have two separate, but related, progressive web apps that each have a manifest.json file. One app is available at /foo/app and the other app at /bar/app on the same domain. The manifest.json file is available at /foo/app/manifest.json and…
fronzee
  • 1,668
  • 2
  • 21
  • 32
0
votes
0 answers

Chrome Extension : Append button on a page and execute script after clicking on appended element

I am working on a chrome extension that will enable user to click on an added button to inform me of their interest. Basically, I built a chrome extension which displays a toolbar and I want the user to be able to click on this toolbar and execute a…
0
votes
3 answers

How do i get manifest.json file in C#.net?

i have referred following link to create bot and deploy it into microsoft teams https://learn.microsoft.com/en-us/microsoftteams/platform/bots/how-to/create-a-bot-for-teams But when it need add manifest.json file in Microsoft teams,i did not get…
teju
  • 33
  • 7
0
votes
1 answer

Foundation Panini how to add a manifest.json file to my dist folder in build process

I've just learned how to build my website using the Foundation Panini library using Foundation CLI. I've successfully finished building all the pages and it works great, but I cannot figure out how to add my manifest.json file at the root (to my…
0
votes
1 answer

Programmatic method to let the user modify the manifest.json content of a Chrome extension

I am developing a Chrome extension for use with the Canvas LMS. A problem with this is that Canvas subscribers have different URLs which do not have a common top level domain. For instance, my University's Canvas site has the URL canvas.gu.se while…
danbae
  • 563
  • 2
  • 8
  • 22
0
votes
2 answers

Multiple URLs in manifest.json file

I am trying to build a Chrome plugin. In the main folder, I have a popup.html which runs by default and uses the following syntax in manifest.json "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, the…
Tamanbir
  • 76
  • 7
0
votes
1 answer

SPFx: Problem with loading schema in manifest JSON

I'm having problem with loading $schema in SPFx within my new web part for SP. Web part is working on benchmark.aspx but my whole manifest is not being processed so I can't set preconfiguredEntries and it's big problem for me. error is: Problems…
0
votes
1 answer

Is it okay to push manifest.json on HTTP/2? How should I delacre it as?

I want to push (HTTP/2 push, not push notification) manifest.json, is it okay? how should I declare it as? If it's image, usually as=image, css file as=style, for manifest.json? Edit, to expand info, this is server push using Link header. The reason…
somuch72
  • 358
  • 4
  • 15
0
votes
1 answer

JS Function Not Defined Chrome Extension Popup.js

I am trying to add this button On Codepen to my chrome extension, my HTML and CSS work perfectly fine. The JS is popup.js and is on the same level as the rest of the code, but it doesn't seem to be linked to the popup.html. Manifest is in the image…