Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the VM prefix in the initiator column in Chrome Dev Tools Network Tab?

In the Chrome Developer Tools Network Tab Initiator Column, sometimes a script has an Initiator which is prefixed with a VM.

My first thoughts are that this stands for Virtual Machine but what do the numbers then stand for?

If I click to view the source, it is still not clear to me what the origin of this script is?

Screenshot of Network Tools from Chrome

like image 784
James Avatar asked Aug 25 '16 15:08

James


1 Answers

It happens when the JavaScript code does not refer to some normally loaded JS file. For example when the code was executed with "eval". The number has no meaning.

Have a look at this StackOverflow thread for more information.

like image 79
Gaël Métais Avatar answered Oct 09 '22 10:10

Gaël Métais