Hides all images in all webpages. disables viewing all images and videos in all websites. removes most images and videos from being seen by the user. For cellphone users this Does not stop images from being downloaded but only hides them.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"browser_specific_settings": {
"gecko": {
"id": "mail@ampshock.com",
"strict_min_version": "65.0"
}
},
"manifest_version": 2,
"name": "hideify",
"version": "1.0",
"description": "hides all images in all webpages matching *.",
"content_scripts": [
{
"matches": [
"*://*/*"
],
"css": [
"hideify.css"
]
}
]
}