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คืออะไร?

Code snippets on Google search results เป็นส่วนขยายของ Chrome ที่พัฒนาโดย odedhb และคุณลักษณะหลักของมันคือ "Shows you a view into the search result so you won't have to click it."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Code snippets on Google search results

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

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

                        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                    

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

ชื่อ Code snippets on Google search results Code snippets on Google search results
ID abphlmegjmjfdiipedjoofdfpdlnbbcn
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/code-snippets-on-google-s/abphlmegjmjfdiipedjoofdfpdlnbbcn
คำอธิบาย Shows you a view into the search result so you won't have to click it.
ขนาดไฟล์ 45.85 KB
จำนวนการติดตั้ง 369
เวอร์ชันปัจจุบัน 0.0.7
อัปเดตครั้งล่าสุด 2020-05-24
วันที่เผยแพร่ 2020-05-24
ผู้พัฒนา odedhb
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/odedhb/dev-snippets
URL หน้าช่วยเหลือ https://github.com/odedhb/dev-snippets/issues
ภาษาที่รองรับ 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
    }
}