Google Bangs

An extension to add duckduckgo bangs to google and startpage searches

Google Bangsคืออะไร?

Google Bangs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jam1garner และคุณลักษณะหลักของมันคือ "An extension to add duckduckgo bangs to google and startpage searches"

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

screenshot
screenshot

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

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

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

                        An extension to add duckduckgo bangs to google searches.

Bangs are quick ways to search plenty of sites. For example if you want to quickly search wikipedia for apples you'd type "!wiki Apples" and it will either automatically open the page if it exists, or searches it.

More info: https://duckduckgo.com/bang
Source: https://github.com/jam1garner/chrome-bangs                    

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

ชื่อ Google Bangs Google Bangs
ID akdgagbbklfcfikcnjhkokgmghnmaikl
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/google-bangs/akdgagbbklfcfikcnjhkokgmghnmaikl
คำอธิบาย An extension to add duckduckgo bangs to google and startpage searches
ขนาดไฟล์ 24.83 KB
จำนวนการติดตั้ง 257
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2019-01-05
วันที่เผยแพร่ 2019-01-05
คะแนน 3.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา jam1garner
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jam1garner/chrome-bangs/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Bangs",
    "version": "1.2",
    "description": "An extension to add duckduckgo bangs to google and startpage searches",
    "background": {
        "scripts": [
            "background.js",
            "bang.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.startpage.com\/*"
            ],
            "js": [
                "startpage.js",
                "check_for_bang.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.google.com\/*",
                "http:\/\/www.google.co.jp\/*",
                "http:\/\/www.google.co.uk\/*",
                "http:\/\/www.google.es\/*",
                "http:\/\/www.google.ca\/*",
                "http:\/\/www.google.de\/*",
                "http:\/\/www.google.it\/*",
                "http:\/\/www.google.fr\/*",
                "http:\/\/www.google.com.au\/*",
                "http:\/\/www.google.com.tw\/*",
                "http:\/\/www.google.nl\/*",
                "http:\/\/www.google.com.br\/*",
                "http:\/\/www.google.com.tr\/*",
                "http:\/\/www.google.be\/*",
                "http:\/\/www.google.com.gr\/*",
                "http:\/\/www.google.co.in\/*",
                "http:\/\/www.google.com.mx\/*",
                "http:\/\/www.google.dk\/*",
                "http:\/\/www.google.com.ar\/*",
                "http:\/\/www.google.ch\/*",
                "http:\/\/www.google.cl\/*",
                "http:\/\/www.google.at\/*",
                "http:\/\/www.google.co.kr\/*",
                "http:\/\/www.google.ie\/*",
                "http:\/\/www.google.com.co\/*",
                "http:\/\/www.google.pl\/*",
                "http:\/\/www.google.pt\/*",
                "http:\/\/www.google.com.pk\/*",
                "https:\/\/www.google.com\/*",
                "https:\/\/www.google.co.jp\/*",
                "https:\/\/www.google.co.uk\/*",
                "https:\/\/www.google.es\/*",
                "https:\/\/www.google.ca\/*",
                "https:\/\/www.google.de\/*",
                "https:\/\/www.google.it\/*",
                "https:\/\/www.google.fr\/*",
                "https:\/\/www.google.com.au\/*",
                "https:\/\/www.google.com.tw\/*",
                "https:\/\/www.google.nl\/*",
                "https:\/\/www.google.com.br\/*",
                "https:\/\/www.google.com.tr\/*",
                "https:\/\/www.google.be\/*",
                "https:\/\/www.google.com.gr\/*",
                "https:\/\/www.google.co.in\/*",
                "https:\/\/www.google.com.mx\/*",
                "https:\/\/www.google.dk\/*",
                "https:\/\/www.google.com.ar\/*",
                "https:\/\/www.google.ch\/*",
                "https:\/\/www.google.cl\/*",
                "https:\/\/www.google.at\/*",
                "https:\/\/www.google.co.kr\/*",
                "https:\/\/www.google.ie\/*",
                "https:\/\/www.google.com.co\/*",
                "https:\/\/www.google.pl\/*",
                "https:\/\/www.google.pt\/*",
                "https:\/\/www.google.com.pk\/*"
            ],
            "js": [
                "google.js",
                "check_for_bang.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.bing.com\/*",
                "http:\/\/www.bing.com\/*"
            ],
            "js": [
                "bing.js",
                "check_for_bang.js"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "tabs",
        "webRequestBlocking",
        "activeTab",
        "https:\/\/duckduckgo.com\/bang_lite.html",
        "https:\/\/*.google.com\/search*",
        "https:\/\/*.startpage.com\/do\/dsearch*"
    ],
    "icons": {
        "256": "icon.png"
    },
    "manifest_version": 2
}