Skip to content

Commit d846201

Browse files
committed
google: Highlight AI summary with a different color
1 parent c2ef726 commit d846201

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

google.com.user.css

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,28 @@
33
@name Google ad marker
44
@description make it more obvious which entries are ads
55
@match https://www.google.com/search*
6-
@version 1.2024.12.27.4
6+
@version 1.2025.05.18.1
77
@downloadURL https://github.com/dnelson-1901/greasemonkey-scripts/raw/master/google.com.user.css
88
==/UserCSS==
99
*/
1010

11-
/* Mark ads and AI */
12-
11+
/* Mark ads */
1312
div[id=taw]
1413
, div[aria-label=Ads]
1514
, div[id=tads]
1615
, div[id=atvcap]
17-
, div[data-mcp]
1816
{
1917
outline: solid 3px #ddbb88;
18+
outline-offset: -3px;
2019
background-image: repeating-linear-gradient(45deg, #fff, #fff 0.5em,#ffeedd 0.5em,#ffeedd 0.6em );
2120
background-size: inherit;
21+
}
22+
23+
/* Mark AI */
24+
div[data-mcp]
25+
{
26+
outline: solid 3px #000;
2227
outline-offset: -3px;
28+
background-image: repeating-linear-gradient(45deg, #fff, #fff 0.5em,#eee 0.5em,#eee 0.6em );
29+
background-size: inherit;
2330
}

0 commit comments

Comments
 (0)