❤ Ducktor - Your Adorable Web Companion

Sometimes, the internet gets you down.

Apa itu ❤ Ducktor - Your Adorable Web Companion?

❤ Ducktor - Your Adorable Web Companion adalah ekstensi Chrome yang dikembangkan oleh Josh Heng, dan fitur utamanya adalah "Sometimes, the internet gets you down.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi ❤ Ducktor - Your Adorable Web Companion

Unduh file ekstensi ❤ Ducktor - Your Adorable Web Companion dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama ❤ Ducktor - Your Adorable Web Companion ❤ Ducktor - Your Adorable Web Companion
ID jibhdcmahhnhponpdcliamkcgbkgofjl
URL Resmi https://chromewebstore.google.com/detail/%E2%9D%A4-ducktor-your-adorable-w/jibhdcmahhnhponpdcliamkcgbkgofjl
Deskripsi Sometimes, the internet gets you down.
Ukuran File 9.06 MB
Jumlah Instalasi 136
Versi Saat Ini 1.0.2
Terakhir Diperbarui 2022-11-06
Tanggal Publikasi 2022-11-01
Pengembang Josh Heng
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/JoshHeng/Ducktor
URL Halaman Bantuan https://github.com/JoshHeng/Ducktor/issues
Bahasa yang Didukung 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"
    ]
}