DuckDuckGo !bangs

Add DuckDuckGo bang buttons to search results and search links in the context menu.

DuckDuckGo !bangsคืออะไร?

DuckDuckGo !bangs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Simon และคุณลักษณะหลักของมันคือ "Add DuckDuckGo bang buttons to search results and search links in the context menu."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        A chrome extension for making it easier to search using DuckDuckGo !bangs. DuckDuckGo is a search engine that does not track you. 
DuckDuckGo !bangs allow you to search on thousands of sites, directly. This extension add two functions.

 - Add !bang buttons to the DuckDuckGo search results page.
 - add context menu to search using DuckDuckGo !bangs for selected text.
Supports 19 !bangs at the moment of over 9000 available.                    

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

ชื่อ DuckDuckGo !bangs DuckDuckGo !bangs
ID hdjfebkndhmegijlghjcdghdbealibeb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/duckduckgo-bangs/hdjfebkndhmegijlghjcdghdbealibeb
คำอธิบาย Add DuckDuckGo bang buttons to search results and search links in the context menu.
ขนาดไฟล์ 40.27 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 0.6.1
อัปเดตครั้งล่าสุด 2017-04-23
วันที่เผยแพร่ 2017-04-23
คะแนน 4.19/5 รวมทั้งหมด 32 คะแนน
ผู้พัฒนา Simon
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/engwerda/chrome-duckduckgo-bangs
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DuckDuckGo !bangs",
    "description": "Add DuckDuckGo bang buttons to search results and search links in the context menu.",
    "version": "0.6.1",
    "author": "Simon Engwerda",
    "manifest_version": 2,
    "icons": {
        "16": "images\/duckduckgo-16.png",
        "48": "images\/duckduckgo-48.png",
        "128": "images\/duckduckgo-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.duckduckgo.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "omnibox": {
        "keyword": "dd"
    }
}