I'm playing around with chrome extensions. I've made a simple extension that deletes all the body content, just for learning purpose.
Works fine with almost all sites (facebook, yahoo, google) but somehow is not working here https://login.live.com/
This is my code:
manifest.json
{
"name": "test",
"description": "test",
"version": "0.1",
"manifest_version": 2,
"permissions": [
"storage"
],
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["content_script.js"],
"run_at": "document_end"
}]
}
content_script.js
document.body.innerHTML = '';
Why the extension is not effective on that page? I'm missing something about chrome extensions or Microsoft implements some security measures?