❤ Ducktor - Your Adorable Web Companion

Sometimes, the internet gets you down.

¿Qué es ❤ Ducktor - Your Adorable Web Companion?

❤ Ducktor - Your Adorable Web Companion es una extensión de Chrome desarrollada por Josh Heng, y su función principal es "Sometimes, the internet gets you down.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión ❤ Ducktor - Your Adorable Web Companion

Descarga archivos de extensión ❤ Ducktor - Your Adorable Web Companion en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Ducktor blocks out bad image content and replaces it with... well... ducks. And more! From screen time reminders to duck dress-up, Ducktor sits in your tray, keeping you company as you surf the web. 🦆

---

The news and internet often gets a lot of us down. We see things we don't wish to see, and we often know what kind of material we really want to block out. As a group, we decided that the best way to navigate the web safely is to replace these images using a blocked wordlist. But no one wants to stare at a bunch of broken image links, so what better, cuter thing to use than a bunch of ducks?

So we set out to do just that, adding some customisable duck fun along the way and a host of other functions to make our cute little duckling a truly formidable web companion.

---

Ducktor sits in any Chrome-based browser, showing a customisable animated duck whenever you click it. This duck can be awakened or set to sleep, depending on whether you want Ducktor's functions on or off - and its individual functions can be toggled too.

Ducktor's main function is image replacement. When on, it replaces any image that matches a set of user-defined word criteria with a picture of your own customised duck. This duck can be given various hats and even a name, making sure that you never get bored of replacing images with an adorable friend you've helped make.

Ducktor also promotes other forms of wellbeing;
- A little duck will pop up in the bottom right corner of your screen giving you a reminder of how much time you've been spending online. This reminder is customisable, allowing you to set just how long you want to be online.
- When opening the Ducktor window, your duck will give you motivational and inspirational quotes to remind you just how much it loves you <3
- The hide and seek function is a much needed boost of serotonin, that weaves ducks in and out of Google image searches to enhance your searching experience.                    

Información Básica de la Extensión

Nombre ❤ Ducktor - Your Adorable Web Companion ❤ Ducktor - Your Adorable Web Companion
ID jibhdcmahhnhponpdcliamkcgbkgofjl
URL Oficial https://chromewebstore.google.com/detail/%E2%9D%A4-ducktor-your-adorable-w/jibhdcmahhnhponpdcliamkcgbkgofjl
Descripción Sometimes, the internet gets you down.
Tamaño del Archivo 9.06 MB
Cantidad de Instalaciones 136
Versión Actual 1.0.2
Última Actualización 2022-11-06
Fecha de Publicación 2022-11-01
Desarrollador Josh Heng
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/JoshHeng/Ducktor
URL de la Página de Ayuda https://github.com/JoshHeng/Ducktor/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.2",
    "short_name": "\u2764 \ufe0fDucktor",
    "name": "\u2764 Ducktor - Your Adorable Web Companion",
    "description": "Sometimes, the internet gets you down.",
    "icons": {
        "128": "ducks\/DuckOn.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_icon": "ducks\/DuckOn.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "image_filter.js",
                "floating_duck.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.google.com\/search?q=*"
            ],
            "run_at": "document_idle",
            "js": [
                "hideAndSeek.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.png",
                "*.gif"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "alarms"
    ]
}