Skip to content

DDG Sidebar Summary above AI by birk

Screenshot of DDG Sidebar Summary above AI

Details

Authorbirk

LicenseMIT

Categoryduckduckgo

Created

Updated

Size645 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

DuckDuckGo will sometimes show an AI summary in the sidebar above the much more useful Wikipedia summary. This puts the Wikipedia one back on top.

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           duckduckgo.com
@namespace      birkenator.bsky.social
@version        1.0.0
@description    Re-order Duckduckgo's sidebar to show human made Wikipedia summary above the AI summary
@author         birk
==/UserStyle== */
@-moz-document domain("duckduckgo.com") {
    .react-results--sidebar {
        display: flex;
        flex-direction: column;
    }

    .L6fj2A3X2mfJl5kE8caF[data-layout="wikinlp"] {
        order: 2;
    }

    .L6fj2A3X2mfJl5kE8caF[data-layout="about"] {
        order: 1;
    }

    .L6fj2A3X2mfJl5kE8caF[data-layout="related_searches"] {
        order: 3;
    }
}

Reviews

No reviews yet.