unbait

Using AI to replace clickbait headlines - one news site at a time.

Hvad er unbait?

unbait er en Chrome-udvidelse udviklet af unbaitextension, og dens hovedfunktion er "Using AI to replace clickbait headlines - one news site at a time.".

Udvidelsesskærmbilleder

screenshot

Download unbait-udvidelses-CRX-fil

Download unbait-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        VIGTIGT: Denne udvidelse er pt ikke funktionel. Det er uklart om udvidelsen bryder de respektive mediers ophavsret. Så længe denne uklarhed består er der "slukket" for udvidelsens funktionalitet. Flere detaljer her: https://www.reddit.com/r/Denmark/comments/144a3oc/hej_rdenmark_jeg_ser_mig_desv%C3%A6rre_n%C3%B8dsaget_til/



Upgrade your news browsing experience with our cutting-edge AI-powered Chrome extension. Say goodbye to clickbait and hello to informative headlines! Our extension intelligently analyzes and replaces clickbait headlines on select news websites. Current BETA version supports Danish news sites ekstrabladet.dk, tv2.dk, and bt.dk. Get ready for a more insightful and satisfying reading journey.

Features:
- Enhanced Headlines: Our AI algorithm swiftly identifies clickbait headlines and replaces them with accurate and informative alternatives.
- Selective Support: Currently supporting ekstrabladet.dk, more to come!
- Seamless Integration: The extension seamlessly integrates into your Chrome browser, working quietly in the background to enhance your news browsing experience.

Why choose our extension?
- Stay Informed: Say goodbye to misleading and sensationalized headlines. Our extension empowers you with relevant and trustworthy information.
- Effortless Browsing: Enjoy a seamless browsing experience without being bombarded by clickbait distractions.
- Tailored Experience: We are constantly working to expand our supported websites, ensuring you have access to accurate headlines across a variety of news sources.

Join our growing community of informed readers and make every click count. Upgrade your news consumption today with our AI-powered Chrome extension!                    

Grundlæggende oplysninger om udvidelsen

Navn unbait unbait
ID gfibnlngmcnmppoljlgphfbbemiieifl
Officiel URL https://chromewebstore.google.com/detail/unbait/gfibnlngmcnmppoljlgphfbbemiieifl
Beskrivelse Using AI to replace clickbait headlines - one news site at a time.
Filstørrelse 50.43 KB
Antal Installationer 2,734
Nuværende Version 1.1.0
Senest Opdateret 2023-06-10
Udgivelsesdato 2023-05-25
Bedømmelse 4.80/5 Samlet 35 Bedømmelser
Udvikler unbaitextension
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "unbait",
    "version": "1.1.0",
    "description": "Using AI to replace clickbait headlines - one news site at a time.",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.eb.dk\/*",
        "https:\/\/*.ekstrabladet.dk\/*",
        "*:\/\/*.bt.dk\/*",
        "*:\/\/*.tv2.dk\/*",
        "https:\/\/us-central1-better-news-with-ai.cloudfunctions.net\/*"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "lightbulb.svg",
                "content.js.map"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "off-16-bw.png",
            "48": "off-48-bw.png",
            "128": "off-128-bw.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.ekstrabladet.dk\/*",
                "*:\/\/*.eb.dk\/*",
                "*:\/\/*.bt.dk\/*",
                "*:\/\/*.tv2.dk\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}