❤ Ducktor - Your Adorable Web Companion

Sometimes, the internet gets you down.

O que é ❤ Ducktor - Your Adorable Web Companion?

❤ Ducktor - Your Adorable Web Companion é uma extensão do Chrome desenvolvida por Josh Heng, e sua principal característica é "Sometimes, the internet gets you down.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão ❤ Ducktor - Your Adorable Web Companion

Baixe arquivos de extensão ❤ Ducktor - Your Adorable Web Companion no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome ❤ 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
Descrição Sometimes, the internet gets you down.
Tamanho do Arquivo 9.06 MB
Contagem de Instalações 136
Versão Atual 1.0.2
Última Atualização 2022-11-06
Data de Publicação 2022-11-01
Desenvolvedor Josh Heng
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/JoshHeng/Ducktor
URL da Página de Ajuda https://github.com/JoshHeng/Ducktor/issues
Idiomas Suportados 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"
    ]
}