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
官方網址 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"
    }
}