Drupal themer

A simple debug tool for Drupal themers

Drupal themer란 무엇입니까?

Drupal themer은(는) chi-teck에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple debug tool for Drupal themers"입니다.

확장 프로그램 스크린샷

screenshot

Drupal themer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        To start using enable theme debug mode on a target site and click Druplicon icon in the Chrome address bar.                    

확장 프로그램 기본 정보

이름 Drupal themer Drupal themer
ID gjlghpombfhkhigbcphenialnhbeolhd
공식 URL https://chromewebstore.google.com/detail/drupal-themer/gjlghpombfhkhigbcphenialnhbeolhd
설명 A simple debug tool for Drupal themers
파일 크기 216 KB
설치 횟수 296
현재 버전 1.0.1
최근 업데이트 2015-10-05
출시 날짜 2015-10-05
평점 5.00/5 총 1 개의 평점
개발자 chi-teck
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Chi-teck/drupal-themer
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Drupal themer",
    "permissions": [],
    "version": "1.0.1",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "\/images\/16-disabled.png",
        "default_title": "Enable theme debugging"
    },
    "content_scripts": [
        {
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "bower_components\/jquery-ui\/jquery-ui.min.js",
                "content.js"
            ],
            "css": [
                "bower_components\/jquery-ui\/themes\/redmond\/jquery-ui.min.css",
                "bower_components\/jquery-ui\/themes\/redmond\/theme.css",
                "content.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "bower_components\/jquery\/dist\/jquery.min.map",
        "bower_components\/jquery-ui\/images\/*",
        "bower_components\/jquery-ui\/themes\/redmond\/images\/*"
    ],
    "description": "A simple debug tool for Drupal themers",
    "icons": {
        "16": "images\/16-enabled.png",
        "32": "images\/32-enabled.png",
        "64": "images\/64-enabled.png",
        "128": "images\/128-enabled.png"
    }
}