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
0 answers

Content script matching unintended patterns

I have a content script and I only want it to match https://fantasy.premierleague.com/a/team/my so I added the following to my manifest.json "content_scripts": [ { "matches": ["*://fantasy.premierleague.com/a/team/my"], "js":…
Amos
  • 1,154
  • 1
  • 16
  • 35
0
votes
1 answer

Do 'orientation' and 'display' properties of manifest.json only work when service worker is registered?

I'm building my first progressive web app. I haven't got as far as registering a service worker just yet, but I have created a manifest.json file, which looks like this: { "short_name": "My PWA", "name": "My Progressive Web Application", …
Dan
  • 5,836
  • 22
  • 86
  • 140
0
votes
2 answers

In SAPUI5 List Report Application, the updated value does not reflect until reload the list

In my SAPUI5 List Report Application project, from the List view, when I navigate to the detailed page (General Information), click Edit and change one of the value in a drop-down (which has a value Help) and click Save, it does not update the…
Dumi
  • 1,414
  • 4
  • 21
  • 41
0
votes
0 answers

Changing Domain Extension in android studio package name

This was the package name com.xyz.abc I want to change this to tech.xyz.abc but I was unable to do that I followed Right click on com and selected refract and then Rename it was then showing me "package contains directories in libraries which…
0
votes
1 answer

SAPUI5: Unable to NavTo Defined Page with Error (Control with ID layout could not be found - EventProvider sap.m.routing.Target)

I have write some code navigate to the next page in SAPUI5. It works in most of my other SAPUI5 application. However, when comes to this application. It does not work for me. I have spend 1 day to find out the solution but it seems does not work…
Chan Yoong Hon
  • 1,592
  • 7
  • 30
  • 71
0
votes
0 answers

add different search link on chrome extension manifest.json

i want to change the search link by language example default search engine (Lang EN): "chrome_settings_overrides": { "search_provider": { "name": "Example", "keyword": "example", "search_url":…
user10043494
0
votes
1 answer

Symfony manifest asset versioning creates multiple files

I'm using Symfony (v4.1) for one of my projects. As I wanted to try out the manifest versioning I enabled it on dev environment. I'm pretty sure it's not a good practice as it takes more time to build the assets up, but well... curiosity. I…
Dawid Zbiński
  • 5,521
  • 8
  • 43
  • 70
0
votes
0 answers

Facebook page shifts when FB is added to Chrome Extension manifest

In the manifest.json of my Chrome Extension, I've added Facebook to the content script. For some reason, I'm not sure if this is a bug in my code or something to do with Facebook, when the extension runs with Facebook in the content script's…
0
votes
1 answer

Web App Manifest Per Page Orientation

In the web app manifest of a progressive web app, is it possible to set different orientations based on what page the user is viewing? Here's what my manifest.json looks like: { "dir": "ltr", "lang": "en-US", "name": "My Application", …
Ryan Foley
  • 193
  • 4
  • 11
0
votes
1 answer

Content Script Matches

So while setting up my Content Scripts in my .manifest file, however, I can't seem to figure out how to set google as a match.. I have done it with google.com and .co.nz and that works but only if I make myself go to the .com site and I am in NZ…
0
votes
1 answer

Simple Chrome Extention that returns the users input in an alert

The objective of this extention is that I can type something into my extention, press submit and and alert to show up with my input. In my popup.html:
Jacob Proctor
  • 27
  • 1
  • 6
0
votes
4 answers

Add Laravel 5.4 Web App to mobile device home screen

I would like to "install" my Laravel 5.4 web app to mobile devices. I know that PWA can do that, and in order to make a PWA, we need to have 1. https connection 2. manifest.json 3. service worker For my case, I do not have HTTPS Connection, and I…
Sem
  • 1,237
  • 16
  • 17
0
votes
1 answer

Multiple manifests for a PWA

I have different environment on which I'd like to test my manifest and my ServiceWorker howerver I can't find a way to have multiple manifest.json, one for each env. Is there any way ?
0
votes
1 answer

Add to screen not showing up

What should be start_url in manifest.json in angular application. { "name": "dummy", "short_name": "dummy", "theme_color": "#1976d2", "background_color": "#fafafa", "display": "standalone", "scope": "/", "start_url": "/", "icons": [ …
0
votes
1 answer

Deploy SAPUI5 application to ABAP repository

I started developping an UI5 application in SAP Web IDE. At this moment, I just run it in a test Fiori Launchpad. The next step will be to deploy it to our ABAP repository. I guess I need to adapt some parts of the application for this reason (or…
C. Ubkcah
  • 273
  • 13
  • 33