Code Search

Find coding answers quickly

什麼是Code Search?

Code Search是由peter.k.albert開發的Chrome擴展程式,該擴展的主要功能是“Find coding answers quickly”。

擴展截圖

screenshot

下載Code Search擴展crx文件

下載Code Search擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Get questions and answers from stackoverflow, when you search on google. The stackoverflow results will be displayed on the right side of the normal google search results. The stackoverflow results will only be shown if a coding word is included in the search query (for example one of these: "js", "javascript", "css", "python", "php", "string").                    

擴展基本資訊

名稱 Code Search Code Search
ID nejihamodfjhekdjmakngaomcejoaamh
官方網址 https://chromewebstore.google.com/detail/code-search/nejihamodfjhekdjmakngaomcejoaamh
簡介 Find coding answers quickly
檔案大小 578 KB
安裝次數 321
目前版本 0.1.2
更新時間 2020-07-20
上架時間 2019-11-13
評分 5.00/5 共 2 次評分
開發者 peter.k.albert
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Code Search",
    "version": "0.1.2",
    "description": "Find coding answers quickly",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/search*",
                "http:\/\/www.google.com\/search*"
            ],
            "run_at": "document_start",
            "js": [
                "materialize.min.js",
                "content.js",
                "google-code-prettify\/prettify.js"
            ],
            "css": [
                "allcss.css",
                "iconfont\/material-icons.css",
                "google-code-prettify\/prettify.css"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Turn on\/off extra search results on the right side",
        "default_icon": {
            "16": "res\/16.png",
            "36": "res\/36.png",
            "48": "res\/48.png",
            "72": "res\/mipmap-72\/ic_launcher.png",
            "128": "res\/128.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/cswebapp.appspot.com\/*",
        "storage"
    ],
    "web_accessible_resources": [
        "iconfont\/MaterialIcons-Regular.woff2",
        "iconfont\/MaterialIcons-Regular.woff",
        "iconfont\/MaterialIcons-Regular.ttf",
        "google-code-prettify\/*.js",
        "google-code-prettify\/*.css",
        "popup.js"
    ]
}