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은(는) LewJ.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple CSS/JS Helpers to inject code snippets into websites. Handy for developers who need to get around things temporarily."입니다.

확장 프로그램 스크린샷

screenshot

Dev Helpers 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
    }
}