In my case, I am using an extension that is prohibited by the website. I had downloaded the extension as a Zip file from the Chrome store and edited it in Notepad++, changed its name, and other things that can help in identifying the extension. But the code is the same, and permissions to access the site are the same, and then installed in developer mode on chrome. Can that website detect that I am using it?
Manifest.json file code:
{
"author": "Johnny Bravo",
"browser_action": {
"default_icon": "icon_128.png",
"default_popup": "/popup.html",
"name": "Gaming Options"
},
"description": "DEVELOPED SPECIALLY FOR GAMERS WHO SAY: I LOVE GAMING! I LOVE GAMING! I LOVE GAMING!",
"icons": {
"128": "icon_128.png"
},
"manifest_version": 2,
"name": "Gaming Options",
"content_scripts": [{
"matches": [
"http://quiz.vu.edu.pk/QuizQuestion.aspx*",
"https://quiz.vu.edu.pk/QuizQuestion.aspx*"
],
"js": [
"popup.js",
"siteJsCode.js",
"copy_search.js",
"jquery.min.js"
]
}],
"permissions": ["http://quiz.vu.edu.pk/*", "https://quiz.vu.edu.pk/*"],
"version": "1.1"}