GAE Admin Console Highlight
The background color of Admin Console will be changed if the application ID matches the specified regular expression. You can use…
What is GAE Admin Console Highlight?
GAE Admin Console Highlight is a Chrome extension developed by Ryo Yamasaki @vierjp, and its main feature is "The background color of Admin Console will be changed if the application ID matches the specified regular expression. You can use…".
Extension Screenshots
Download GAE Admin Console Highlight Extension CRX File
Download GAE Admin Console Highlight 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
The background color of Admin Console will be changed if the application ID matches the specified regular expression. You can use for the distinction between production and test environments. - Privacy Policy This extension has made the collection of usage by Google Analytics. Information personally identifiable or information such as Website you are viewing does not send. Cookies are used for tracking.
Extension Basic Information
Name | GAE Admin Console Highlight |
ID | ankbabdobnjlbmikloabjgghafonlmpl |
Official URL | https://chromewebstore.google.com/detail/gae-admin-console-highlig/ankbabdobnjlbmikloabjgghafonlmpl |
Description | The background color of Admin Console will be changed if the application ID matches the specified regular expression. You can use… |
File Size | 128 KB |
Installation Count | 54 |
Current Version | 1.0.0 |
Last Updated | 2012-11-12 |
Publish Date | 2012-11-12 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Ryo Yamasaki @vierjp |
Payment Type | free |
Supported Languages | en,ja |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "version": "1.0.0", "description": "__MSG_extDescription__", "content_scripts": [ { "js": [ "jquery-1.6.4.js", "script.js" ], "matches": [ "https:\/\/appengine.google.com\/*" ] } ], "permissions": [], "optional_permissions": [], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "icons": { "16": ".\/icon16.png", "48": ".\/icon48.png", "128": ".\/icon128.png" }, "background": { "page": ".\/background.html" }, "options_page": "options.html", "default_locale": "en" } |