Questions tagged [chrome-app-developer-tool]

The Chrome Apps Developer Tool helps developers build and debug Chrome Apps and Extensions.

The Chrome Apps Developer Tool helps developers build and debug Chrome Apps and Extensions.

The features include:

  • Separate view for unpacked apps/extensions
  • Inspect views for inspecting app/extension pages using dev tools
  • Reload an app/extension
  • Launch an app/extension
  • View permissions
  • Pack an app/extension
  • Uninstall an app/extension
  • Load an unpacked app/extension
  • Search for app/extension
41 questions
13
votes
1 answer

Chrome Extension Taken Down. How did you proceed?

My business has multiple apps on the google webstore. I noticed this error below this morning in my account. One of the apps taken down was a test app which was unlisted so its not a big problem. However, one of the apps is a production app that…
7
votes
5 answers

Disable DevTools on nwjs 13

We're developing an app based on Chrome Apps with NWJS 0.13.0 Alpha version, because lower versions don't support Chrome Apps. We need version 13 so we can use Serial Ports. However in Windows or Ubuntu, when pressing right clic it showed a menu…
2
votes
0 answers

Chrome Developer Tools - Multiple resources served by same domain

I'm trying to analyze performance bottlenecks in my web application I recently ran an audit using chromes Developer Tools One warning said combine external javascript(11) There are multiple resources served from same domain. Consider combining them…
2
votes
1 answer

How to access Chrome API in Web Worker?

I have some metadataWorker.js in my Chrome App, It is Web Worker and runs as follows: metaThread = new Worker('/src/utils/metadataworker.js'); But I can't access the chrome global object in metadataworker.js. Is there any way to use Chrome API…
2
votes
2 answers

Chrome Apps Developer Tool cca says background, fullscreen permissions not supported

The background permission is very important. Without it, how do you create the window? chrome.app.window.create(...) I have an app with the following manifest: { "manifest_version": 2, "name": "MyApp", "description": "MyApp", …
Don Rhummy
  • 24,730
  • 42
  • 175
  • 330
1
vote
0 answers

what was debug loggind and text provider?

import kivy from kivy.app import App from kivy.uix.label import Label class SpartanApp(App): def build(self): return Label(text="this is spartaa!!!") if __name__ == "__main__": SpartanApp().run() Output: [CRITICAL] [Text …
1
vote
1 answer

Java Language user input error with importing file

I am facing this problem, I have no errors in my code. Here is the code .Please remember I am writing java in android studio because I am working on app development. practice.java package com.example.javastart; import java.util.Scanner; public…
1
vote
0 answers

how to get data from mysql and save it in a variable without using listview builder or future builder

i am totally new to flutter and even coding so kindly help me and also put it in simple terms here is my model class import 'dart:convert'; class LoginUserDataModel { LoginUserDataModel({ required this.id, required this.name, required…
BragU
  • 11
  • 3
1
vote
0 answers

How to make progress bar invisible after load image?

When my app is installed I want to see a progress bar until the image is loaded by an API call. After that, I want to make it invisible. Here is the code: public class MainActivity extends AppCompatActivity { private ImageView imageView; //…
1
vote
0 answers

How to save big data using Natife FIle System Api

I'm trying to save big blob data using ShowSaveFilePicker API but it gives security error. with corresponding message VM6785:61 DOMException: Failed to execute 'showSaveFilePicker' on 'Window': Must be handling a user gesture to show a file…
1
vote
1 answer

Error on Android studio ( Method doesn't override method from its superclass )

package com.example.mahaapptask2; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; public class MainActivity extends AppCompatActivity { @Override …
1
vote
1 answer

script-src contains an invalid source: ''wasm-eval' while using web worker

The source list for Content Security Policy directive 'script-src' contains an invalid source: ''wasm-eval''. It will be ignored.
Amarjit
  • 34
  • 7
1
vote
1 answer

Google chrome api javascript detect file open in browser

For google chrome extension i need to be able to detect if user use chrome browse to open .html file. I tried different method but it seem i do not get an event "permissions": ["webRequest","browsingData", "fileSystemProvider"], …
1
vote
1 answer

How to select a N number of checkboxes using console?

I'm trying to select a N number of checkboxes of a list by console, but I don't know exactly how to do it. I have this list of data, and I have to delete all registers, but the system doesn't allows me to delete more than 200 items, and my "check…
1
vote
3 answers

Chrome Developer Tools - Find matching Name or Id attribute in Javascript?

When I highlight the input on the Chrome browser and then click on "Inspect Element" from right-click menu then Chrome Developer Tools will popup. Assume in the Chrome Developer Tools, this will appear:
I'll-Be-Back
  • 10,530
  • 37
  • 110
  • 213
1
2 3