Dev Helpers

Simple CSS/JS Helpers to inject code snippets into websites. Handy for developers who need to get around things temporarily.

Dev Helpersคืออะไร?

Dev Helpers เป็นส่วนขยายของ Chrome ที่พัฒนาโดย LewJ.me และคุณลักษณะหลักของมันคือ "Simple CSS/JS Helpers to inject code snippets into websites. Handy for developers who need to get around things temporarily."

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

screenshot

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

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

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

                        Updated:
- Lots of bug fixes, now runs much better!

Features:
- Live CSS Updating, see your changes instantly.
- Toggle Auto injection of jQuery for easy and quick DOM manipulation
- Saves the snippets based on domain, so you don't have to worry about adding them again next time you work on that project!
- Syntax highlighting
- Bracket Matching
- Green badge on icon when there is active JS or CSS on the current page

Features Coming Soon
- Support for custom tab names, for multiple saves per domain
- A share feature that you can send to someone else who has the plugin and it auto-fills the plugin.

This is an early version and may contain bugs. If you find something not working properly, please leave feedback with the details!

**DISCLAIMER: DON'T USE THIS UNLESS YOU KNOW WHAT YOU ARE DOING**                    

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

ชื่อ Dev Helpers Dev Helpers
ID jjobljeheboinnjikhblcdejalnlolgl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dev-helpers/jjobljeheboinnjikhblcdejalnlolgl
คำอธิบาย Simple CSS/JS Helpers to inject code snippets into websites. Handy for developers who need to get around things temporarily.
ขนาดไฟล์ 135 KB
จำนวนการติดตั้ง 343
เวอร์ชันปัจจุบัน 0.0.8
อัปเดตครั้งล่าสุด 2017-11-13
วันที่เผยแพร่ 2017-11-13
คะแนน 5.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา LewJ.me
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.lewj.me/project/dev-helpers
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dev Helpers",
    "short_name": "Dev Helpers",
    "version": "0.0.8",
    "version_name": "0.0.8",
    "description": "Simple CSS\/JS Helpers to inject code snippets into websites. Handy for developers who need to get around things temporarily.",
    "author": "LewJ.me",
    "homepage_url": "https:\/\/www.lewj.me\/project\/dev-helpers",
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "Dev Helpers",
        "default_popup": "popup.html",
        "default_locale": "en"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "*.eot",
        "*.ttf",
        "*.svg",
        "*.woff",
        "*.woff2",
        "*.png",
        "*.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'",
    "permissions": [
        "tabs",
        "*:\/\/*\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "vendor\/jquery-3.2.1.min.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "vendor\/jquery-3.2.1.min.js",
            "scripts\/background.js"
        ],
        "persistent": false
    }
}