Drupal themer
A simple debug tool for Drupal themers
Co to jest Drupal themer?
Drupal themer to rozszerzenie Chrome opracowane przez chi-teck, a jego główną funkcją jest „A simple debug tool for Drupal themers”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Drupal themer
Pobierz pliki rozszerzeń Drupal themer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
To start using enable theme debug mode on a target site and click Druplicon icon in the Chrome address bar.
Podstawowe informacje o rozszerzeniu
Nazwa | Drupal themer |
ID | gjlghpombfhkhigbcphenialnhbeolhd |
Oficjalny URL | https://chromewebstore.google.com/detail/drupal-themer/gjlghpombfhkhigbcphenialnhbeolhd |
Opis | A simple debug tool for Drupal themers |
Rozmiar pliku | 216 KB |
Liczba instalacji | 296 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2015-10-05 |
Data Publikacji | 2015-10-05 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | chi-teck |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Chi-teck/drupal-themer |
Obsługiwane Języki | 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" } } |