❤ Ducktor - Your Adorable Web Companion

Sometimes, the internet gets you down.

Vad är ❤ Ducktor - Your Adorable Web Companion?

❤ Ducktor - Your Adorable Web Companion är en Chrome-tillägg utvecklad av Josh Heng, och dess huvudfunktion är "Sometimes, the internet gets you down.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner ❤ Ducktor - Your Adorable Web Companion-förlängningens CRX-fil

Ladda ner ❤ Ducktor - Your Adorable Web Companion-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn ❤ Ducktor - Your Adorable Web Companion ❤ Ducktor - Your Adorable Web Companion
ID jibhdcmahhnhponpdcliamkcgbkgofjl
Officiell webbadress https://chromewebstore.google.com/detail/%E2%9D%A4-ducktor-your-adorable-w/jibhdcmahhnhponpdcliamkcgbkgofjl
Beskrivning Sometimes, the internet gets you down.
Filstorlek 9.06 MB
Antal Installationer 136
Aktuell Version 1.0.2
Senast Uppdaterad 2022-11-06
Publiceringsdatum 2022-11-01
Utvecklare Josh Heng
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/JoshHeng/Ducktor
Hjälpsida URL https://github.com/JoshHeng/Ducktor/issues
Stödda Språk 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"
    ]
}