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文件

下载Drupal themer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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