Questions tagged [google-developer-tools]

184 questions
103
votes
10 answers

How to delete Project from Google Developers Console

Seems like Google services are increasingly harder to manage. Now i want to delete a project ID that was previously created in another test account. Assuming that I could recreate it in another account. The main reason for this is that the Google+…
54
votes
8 answers

Capture Downloads in the Network Tab of Google Chrome Developer Tools

The Network tab in the Google Chrome Developer Tools window shows almost all http requests made, but does not seem to capture anything when the http request results in a file being downloaded. How can I capture download requests in Google Chrome?
Ari Seyhun
  • 11,506
  • 16
  • 62
  • 109
33
votes
1 answer

How to programmatically replicate a request found in Chrome Developer Tools?

I'm looking at my balance on Venmo.com but they only show you 3 months at a time and I'd like to get my entire transaction history. Looking at the Chrome Developer Tools, under the network tab, I can see the request to…
Chet
  • 18,421
  • 15
  • 69
  • 113
27
votes
8 answers

'Token has been expired or revoked' - Google OAuth2 Refresh token gets expired in a few days

I am using Google Analytics API to fetch analytics data. I tried to authenticate it using following steps: Created OAuth client ID in https://console.developers.google.com/ credentials section. In consent screen I had set publishing status as…
21
votes
2 answers

How to see the style of the thumb of range input in Chrome developer tools?

I am using materialize css for my website and currently I am trying to change the style of the thumb of the range input (i.e. The thing you click and hold to change the value of the slide bar) And when changing sytle, I would like to change value…
cytsunny
  • 4,838
  • 15
  • 62
  • 129
15
votes
8 answers

How to run jQuery directly on any page in the browser?

Is there some programmatic way (or maybe a browser plugin) that allows users to arbitrarily run any jQuery they want on a webpage that is currently loaded in their browser? Edit: My motivation is to be able to test jQuery syntax and commands ahead…
pulkitsinghal
  • 3,855
  • 13
  • 45
  • 84
15
votes
6 answers

ERROR TypeError: Cannot read property 'length' of undefined

There is an error in this part of my code logo But when I checked the assets folder, gms-logo.png is still there and in angular-cli.json, assets is also there.…
14
votes
1 answer

Why does Chrome debugger get undefined when accessing variables in Closure?

Code: function test4() { var x = 10; var y = 100; // inner referred x only function inner () { console.log(x); debugger; } // inner2 referred y to make sure y is in the scope of inner function inner2 () { …
ST_Lighter
  • 151
  • 1
  • 6
12
votes
1 answer

Google My Activity API?

At myactivity.google.com, you can view all your Google activity. It's super rich data , and I'd love to be able to access my own programatically. Does anyone know if there is a public API to access this data, or if there is one in the works?
9
votes
1 answer

How to see ALL events of a page in Chrome Developer Tools?

There is no filter button anymore in Chrome Developer Tools/Elements/Event Listeners. The Event Listeners panel will show only the events of the element you select in the Elements panel. So the events attached to child nodes will not show. If I…
Tiberiu
  • 418
  • 1
  • 3
  • 12
8
votes
1 answer

Android stetho Google Developer tools resources truncated

Using Stetho and Stetho Realm. Stetho.initialize( Stetho.newInitializerBuilder(this) .enableDumpapp(Stetho.defaultDumperPluginsProvider(this)) …
7
votes
0 answers

Why does resizing the window behave differently from resizing the "responsive box" in chrome developer tools?

Yesterday I observed some really strange behaviour and wrote a looooong question on it. As @tacoshy correctly pointed out, the question lacked focus. I will therefore, in this post, focus on one single question: Why does resizing the window behave…
MrJalapeno
  • 1,532
  • 3
  • 18
  • 37
6
votes
1 answer

Offline Usage. Flutter Hamilton App Architecture. Write to Node and Expect Cloud Function to Update Database and then listener to update UI

The following quote is taken from Google Developer Blog. https://developers.googleblog.com/2017/08/hamilton-app-takes-stage.html For example, when someone enters the lottery, the app first writes data to specific nodes in Realtime Database and…
zirinisp
  • 9,971
  • 5
  • 32
  • 38
6
votes
2 answers

Identifying which websites are using ReCAPTCHA v1 in order to upgrade

Google is currently sending out a mass email that looks like this: Dear Webmaster, You are receiving this email because you are registered as a website administrator using reCAPTCHA, and your website is still using reCAPTCHA v1, which will be…
Tim Nafziger
  • 163
  • 2
  • 7
6
votes
2 answers

Uncaught SecurityError: Blocked a frame with origin "https://www.google.com" from accessing a frame with origin "http://my.site.com".

I am using google reCaptcha v2.0 and this is working in the same domain when i am trying to do it with a sample html page but same thing is not working when I am trying to integrate with the full production page. After clicking on reCaptcha checkbox…
1
2 3
12 13