DuckDuckGo !bangs

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

什麼是DuckDuckGo !bangs?

DuckDuckGo !bangs是由Simon開發的Chrome擴展程式,該擴展的主要功能是“Add DuckDuckGo bang buttons to search results and search links in the context menu.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載DuckDuckGo !bangs擴展crx文件

下載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
官方網址 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"
    }
}