Code Search

Find coding answers quickly

Code Search là gì?

Code Search là một tiện ích mở rộng Chrome được phát triển bởi peter.k.albert, và tính năng chính của nó là "Find coding answers quickly".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Code Search

Tải xuống các tệp mở rộng Code Search dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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").                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Code Search Code Search
ID nejihamodfjhekdjmakngaomcejoaamh
URL Chính Thức https://chromewebstore.google.com/detail/code-search/nejihamodfjhekdjmakngaomcejoaamh
Mô tả Find coding answers quickly
Kích Thước Tệp 578 KB
Số Lần Cài Đặt 321
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2020-07-20
Ngày Phát Hành 2019-11-13
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển peter.k.albert
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}