DuckDuckSometimes

Redirect some of your Google searches to DuckDuckGo

DuckDuckSometimesคืออะไร?

DuckDuckSometimes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย alexander.sideris.west และคุณลักษณะหลักของมันคือ "Redirect some of your Google searches to DuckDuckGo"

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DuckDuckSometimes

ดาวน์โหลดไฟล์ส่วนขยาย DuckDuckSometimes ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ DuckDuckSometimes DuckDuckSometimes
ID khbjelepmeiljelecnngalpigkjaoaga
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/duckducksometimes/khbjelepmeiljelecnngalpigkjaoaga
คำอธิบาย Redirect some of your Google searches to DuckDuckGo
ขนาดไฟล์ 65.43 KB
จำนวนการติดตั้ง 127
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2019-09-03
วันที่เผยแพร่ 2019-09-03
คะแนน 3.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา alexander.sideris.west
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
}