Drupal themer

A simple debug tool for Drupal themers

What is Drupal themer?

Drupal themer is a Chrome extension developed by chi-teck, and its main feature is "A simple debug tool for Drupal themers".

Extension Screenshots

screenshot

Download Drupal themer Extension CRX File

Download Drupal themer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Drupal themer Drupal themer
ID gjlghpombfhkhigbcphenialnhbeolhd
Official URL https://chromewebstore.google.com/detail/drupal-themer/gjlghpombfhkhigbcphenialnhbeolhd
Description A simple debug tool for Drupal themers
File Size 216 KB
Installation Count 296
Current Version 1.0.1
Last Updated 2015-10-05
Publish Date 2015-10-05
Rating 5.00/5 Total 1 Ratings
Developer chi-teck
Payment Type free
Extension Website https://github.com/Chi-teck/drupal-themer
Supported Languages 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"
    }
}