Code snippets on Google search results

Shows you a view into the search result so you won't have to click it.

Code snippets on Google search results là gì?

Code snippets on Google search results là một tiện ích mở rộng Chrome được phát triển bởi odedhb, và tính năng chính của nó là "Shows you a view into the search result so you won't have to click it.".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Code snippets on Google search results

Tải xuống các tệp mở rộng Code snippets on Google search results 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

                        Are you too lazy to click on search results to see the actual:
- Stack Overflow answer?
- npm install instructions?
- or the GitHub repo's README.md file?

Yeah, me too.

That's why I built this chrome extension.
It shows you a view into the search result so you won't have to click it.

Currently supported sites: - StackOverflow - GitHub - npm

It's open source, I need help with development!
https://github.com/odedhb/dev-snippets                    

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

Tên Code snippets on Google search results Code snippets on Google search results
ID abphlmegjmjfdiipedjoofdfpdlnbbcn
URL Chính Thức https://chrome.google.com/webstore/detail/code-snippets-on-google-s/abphlmegjmjfdiipedjoofdfpdlnbbcn
Mô tả Shows you a view into the search result so you won't have to click it.
Kích Thước Tệp 45.85 KB
Số Lần Cài Đặt 369
Phiên Bản Hiện Tại 0.0.7
Cập Nhật Lần Cuối 2020-05-24
Ngày Phát Hành 2020-05-24
Nhà Phát Triển odedhb
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/odedhb/dev-snippets
URL Trang Trợ Giúp https://github.com/odedhb/dev-snippets/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Code snippets on Google search results",
    "version": "0.0.7",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "description": "Shows you a view into the search result so you won't have to click it.",
    "homepage_url": "https:\/\/github.com\/odedhb\/dev-snippets",
    "icons": {
        "16": "icons\/icon-16_x_16.png",
        "48": "icons\/icon-48_x_48.png",
        "128": "icons\/icon-128_x_128.png"
    },
    "default_locale": "en",
    "page_action": {
        "default_icon": "icons\/icon-19_x_19.png",
        "default_title": "Dev snippets on google search results",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "content_scripts": [
        {
            "css": [
                "css\/style.css",
                "css\/highlight.stackoverflow.css"
            ],
            "js": [
                "src\/inject\/inject.js",
                "js\/highlight.js",
                "js\/marked.min.js"
            ],
            "matches": [
                "https:\/\/www.google.co.il\/*",
                "https:\/\/www.google.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/background\/background.js"
        ],
        "persistent": false
    }
}