❤ Ducktor - Your Adorable Web Companion

Sometimes, the internet gets you down.

❤ Ducktor - Your Adorable Web Companion क्या है?

❤ Ducktor - Your Adorable Web Companion Josh Heng द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sometimes, the internet gets you down."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ❤ Ducktor - Your Adorable Web Companion एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम ❤ Ducktor - Your Adorable Web Companion ❤ Ducktor - Your Adorable Web Companion
ID jibhdcmahhnhponpdcliamkcgbkgofjl
आधिकारिक URL https://chromewebstore.google.com/detail/%E2%9D%A4-ducktor-your-adorable-w/jibhdcmahhnhponpdcliamkcgbkgofjl
विवरण Sometimes, the internet gets you down.
फ़ाइल का आकार 9.06 MB
स्थापना संख्या 136
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2022-11-06
प्रकाशन तिथि 2022-11-01
डेवलपर Josh Heng
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/JoshHeng/Ducktor
सहायता पृष्ठ URL https://github.com/JoshHeng/Ducktor/issues
समर्थित भाषाएँ 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"
    ]
}