DuckDuckSometimes

Redirect some of your Google searches to DuckDuckGo

Co to jest DuckDuckSometimes?

DuckDuckSometimes to rozszerzenie Chrome opracowane przez alexander.sideris.west, a jego główną funkcją jest „Redirect some of your Google searches to DuckDuckGo”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia DuckDuckSometimes

Pobierz pliki rozszerzeń DuckDuckSometimes w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Quitting Google search doesn't have to be cold turkey. You can contribute to a healthier web by sometimes searching on another search engine like DuckDuckGo.

This extension redirects a percentage of your google searches to DuckDuckGo.                    

Podstawowe informacje o rozszerzeniu

Nazwa DuckDuckSometimes DuckDuckSometimes
ID khbjelepmeiljelecnngalpigkjaoaga
Oficjalny URL https://chromewebstore.google.com/detail/duckducksometimes/khbjelepmeiljelecnngalpigkjaoaga
Opis Redirect some of your Google searches to DuckDuckGo
Rozmiar pliku 65.43 KB
Liczba instalacji 127
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2019-09-03
Data Publikacji 2019-09-03
Ocena 3.00/5 Łącznie 1 Oceny
Deweloper alexander.sideris.west
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js",
            "jquery-3.3.1.min.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*.google.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "images\/private.png",
        "default_title": "DuckDuckSometimes",
        "default_popup": "popup.html"
    },
    "description": "Redirect some of your Google searches to DuckDuckGo",
    "icons": {
        "32": "images\/private.png",
        "48": "images\/private.png",
        "128": "images\/private.png"
    },
    "manifest_version": 2,
    "name": "DuckDuckSometimes",
    "short_name": "DuckDuckSometimes",
    "permissions": [
        "storage"
    ],
    "version": "1.0.0"
}