google-chrome-theme

Creating a dynamic Chrome theme

喜欢而已 提交于 2019-12-23 12:28:24
问题 I'm trying to build a theme extension for Google Chrome that will regularly update the background image using a remote image source (i.e. images are stored on a web server, not locally). The problem is that themes are not allowed to contain scripting elements. Any suggestions how to work around this restriction? 回答1: If by background image you mean the background of the New Tab page, you can replace it with an html page (using an extension, not a theme, that is): http://code.google.com/chrome

Is it possible to create dynamic theme in Chrome?

大城市里の小女人 提交于 2019-12-18 04:16:27
问题 I can create static theme as described in documentation which I guess can not be modified at runtime. I need some way or API for changing theme properties at runtime. Is it possible to do it with Chrome? 回答1: No, it's not possible right now. Sorry 来源: https://stackoverflow.com/questions/12420652/is-it-possible-to-create-dynamic-theme-in-chrome

How can I run JS code from a google chrome theme

安稳与你 提交于 2019-12-10 21:15:55
问题 Google Chrome themes are defined on the Chrome developer docs as follows: A theme is a special kind of extension that changes the way the browser looks. Themes are packaged like regular extensions, but they don't contain JavaScript or HTML code. (emphasis my own) However I would like to apply some kind of theme which does run JavaScript on the page I load. How can I do this? I have tried adding "permissions": ["<all_urls>"], "content_scripts": [ { "matches": [ "http://*/*", "https://*/*" ],

Chrome theme: How to change the colour of the URL text when hovered over a link on a web page?

空扰寡人 提交于 2019-12-09 12:21:25
问题 I am very new to developing Chrome themes. Everything went well but when I hover mouse pointer over a link, the URL displayed at the bottom left side is not readable because of its font color! How can I change the font color? 回答1: The color of the status bar is derived from the color of the toolbar and the color of its text is from the tab_text . Well it was in Chrome 6 but Im pretty sure the things where one color comes from another color and still all the same. Have a look at an old doc

Idea: Conditional Chrome theme based on environment [closed]

我只是一个虾纸丫 提交于 2019-12-03 16:12:56
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 3 years ago . As a web developer I'm constantly working on projects in different environments (local, staging, testing, production). I mostly work on Drupal projects. I can't tell you the number of times I've been led from local to production by just browsing the site. And then accidentally

Chrome theme: How to change the colour of the URL text when hovered over a link on a web page?

て烟熏妆下的殇ゞ 提交于 2019-12-03 14:57:31
I am very new to developing Chrome themes. Everything went well but when I hover mouse pointer over a link, the URL displayed at the bottom left side is not readable because of its font color! How can I change the font color? The color of the status bar is derived from the color of the toolbar and the color of its text is from the tab_text . Well it was in Chrome 6 but Im pretty sure the things where one color comes from another color and still all the same. Have a look at an old doc that lists those things.... https://docs.google.com/document/pub?id

Idea: Conditional Chrome theme based on environment [closed]

五迷三道 提交于 2019-12-03 05:24:50
Closed . This question needs to be more focused. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it focuses on one problem only by editing this post . As a web developer I'm constantly working on projects in different environments (local, staging, testing, production). I mostly work on Drupal projects. I can't tell you the number of times I've been led from local to production by just browsing the site. And then accidentally changing a setting on production that was really only supposed to be changed on my local environment. So here's

Google Chrome Customize Developer Tools Theme / Color Schema

笑着哭i 提交于 2019-11-30 10:26:39
问题 How to change color schema on Developer Tools, JavaScript Console in Google Chrome ? Like this: 回答1: Install a DevTools Theme like Zero Dark Matrix Goto chrome://flags/#enable-devtools-experiments , and enable Developer Tools experiments . Select Relaunch Now at the bottom of the page. F12 to Open developer tools, go to Settings , select Experiments tab, and check Allow custom UI themes . F12 , Reload DevTools. 回答2: The dark theme is now natively supported in DevTools: https://developers

Google Chrome Customize Developer Tools Theme / Color Schema

谁说胖子不能爱 提交于 2019-11-29 20:26:05
How to change color schema on Developer Tools, JavaScript Console in Google Chrome ? Like this: Install a DevTools Theme like Zero Dark Matrix Goto chrome://flags/#enable-devtools-experiments , and enable Developer Tools experiments . Select Relaunch Now at the bottom of the page. F12 to Open developer tools, go to Settings , select Experiments tab, and check Allow custom UI themes . F12 , Reload DevTools. The dark theme is now natively supported in DevTools: https://developers.google.com/web/updates/2016/02/devtools-digest-devtools-go-dark#a_dark_theme_for_devtools micjamking As noted in this

Is it possible to create dynamic theme in Chrome?

前提是你 提交于 2019-11-29 04:38:34
I can create static theme as described in documentation which I guess can not be modified at runtime. I need some way or API for changing theme properties at runtime. Is it possible to do it with Chrome? No, it's not possible right now. Sorry 来源: https://stackoverflow.com/questions/12420652/is-it-possible-to-create-dynamic-theme-in-chrome