Skip to content

Image Transpotter by xyadx

Screenshot of Image Transpotter

Details

Authorxyadx

LicenseNo License

Categoryglobal

Created

Updated

Size736 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

A very simple tool to spot any transparent images in a webpage.
Helpful when searching in any stock image sites.

◉Go to Extensions and ☑️Allow access to search page result(to use it in google search)
◉You can change color in config settings(kog icon)

Notes

Source code

/* ==UserStyle==
@name           Image Transpotter
@namespace      https://userstyles.world/user/xyadx
@version        1.2
@description    tool to detect transparent images
@author         YAD
@license        NO-REDISTRIBUTION
@preprocessor   stylus
@var checkbox wenhov "Only On Hover" 0
@var color b1 'Background Color' #fb1f29
==/UserStyle== */
@-moz-document regexp("https?://(?!(.*\\.excludedsite\\.com/)).*"), url-prefix("file:///") {
	// website to exclude from this script ⬆️
     img {
     if wenhov == "0" {
		background: var(--backG)!important; }
     }
	img:hover {
		background: var(--backG)!important
	}
     
     
     :root {
          --backG: b1;
          --backT: transparent
     }
}

Reviews

No reviews yet.