Code Preview

A Chrome extension to preview code snippets and answers to code questions in Google search results.

Code Previewคืออะไร?

Code Preview เป็นส่วนขยายของ Chrome ที่พัฒนาโดย VladB และคุณลักษณะหลักของมันคือ "A Chrome extension to preview code snippets and answers to code questions in Google search results."

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

screenshot
screenshot

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

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

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

                        Code Preview Snippets is a powerful developer tool that enhances your Google search experience by displaying code snippets directly on the search results page. With this extension, you can quickly preview code examples and answers to coding questions without having to visit individual websites.

Features:

 - Seamless Integration: The extension seamlessly integrates with Google search, automatically detecting code snippets and relevant answers from popular programming websites.

 - Instant Code Previews: Get a quick glance at code snippets and answers right within the search results, saving you time and effort.

 - Syntax Highlighting: Code snippets are beautifully highlighted using Prism syntax highlighting, making it easy to distinguish different programming languages.
Copy to Clipboard: Copy code snippets to your clipboard with just one click, allowing you to easily use them in your own projects.

 - Toggle Functionality: Enable or disable the extension with a simple toggle switch, giving you control over when to display code previews.

 - Code Preview Snippets supports a wide range of programming websites, including Stack Overflow, GitHub, CodePen, and more. It intelligently extracts code snippets and answers, providing you with valuable coding resources at your fingertips.

Enhance your coding workflow with Code Preview Snippets and gain immediate access to code examples and answers without leaving the search results page. Install the extension now and take your programming productivity to new heights!                    

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

ชื่อ Code Preview Code Preview
ID aggcimncbpmbcjigijokokinffnojcoo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/code-preview/aggcimncbpmbcjigijokokinffnojcoo
คำอธิบาย A Chrome extension to preview code snippets and answers to code questions in Google search results.
ขนาดไฟล์ 330 KB
จำนวนการติดตั้ง 38
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2023-05-24
วันที่เผยแพร่ 2023-05-17
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา VladB
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Code Preview",
    "version": "1.1",
    "description": "A Chrome extension to preview code snippets and answers to code questions in Google search results.",
    "permissions": [
        "scripting",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "contentScript.js",
                "lib\/he.js",
                "lib\/prism.js"
            ],
            "css": [
                "lib\/prism.css",
                "lib\/site.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "action": {
        "default_icon": {
            "16": "img\/icon16.png",
            "48": "img\/icon48.png",
            "128": "img\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "lib\/he.js",
                "lib\/prism.js",
                "lib\/prism.css",
                "lib\/site.css",
                "contentScript.js",
                "popup.js",
                "backgroundScript.js",
                "img\/icon16.png",
                "img\/icon48.png",
                "img\/icon128.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}