Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is the purpose of chrome-extension inject.js

Hello I have a react project which is working full and functional but when I look into network form console I find an unexpected script called

chrome-extension://gppongmhjkpfnbhagpmjfkannfbllamg/js/inject.js

which is not associated with my project. Is that a virus or an extension ??

In my

chrome://extensions/

there is nothing called inject. Can anyone tell me what is this? This script loading for all site in my browser. Is my browser compromised?? I am walking totally in dark.

like image 607
ANIK ISLAM SHOJIB Avatar asked Sep 19 '19 08:09

ANIK ISLAM SHOJIB


1 Answers

The string gppongmhjkpfnbhagpmjfkannfbllamg is the Chrome extension ID. You can search this ID in the Chrome Web Store to find that it is Wappalyzer.

The inject.js file is not inherently malicious because of its name. To look at the javascript yourself, you can look at the contents of js/inject.js by finding the
gppongmhjkpfnbhagpmjfkannfbllamg folder in your Chrome Extension directory.

like image 195
Ross Jacobs Avatar answered Sep 29 '22 23:09

Ross Jacobs