All Projects → mike-u → Editchromethemes

mike-u / Editchromethemes

A guide to editing Chrome themes

Projects that are alternatives of or similar to Editchromethemes

Ctool
程序开发常用工具 chrome 扩展
Stars: ✭ 111 (-5.93%)
Mutual labels:  chrome-extension, chrome, crx
Simpread Little
简悦( SimpRead ) · 轻阅版
Stars: ✭ 216 (+83.05%)
Mutual labels:  chrome-extension, chrome, crx
Prettier Chrome
🎨 An extension that can run Prettier in the browser
Stars: ✭ 207 (+75.42%)
Mutual labels:  chrome-extension, chrome, crx
Easy To Rss
🚀 Chrome/Firefox Extension to retreive RSS feeds URLs from WebSite, RSSHub supported
Stars: ✭ 386 (+227.12%)
Mutual labels:  chrome-extension, chrome, crx
Simpread
简悦 ( SimpRead ) - 让你瞬间进入沉浸式阅读的扩展
Stars: ✭ 5,352 (+4435.59%)
Mutual labels:  chrome-extension, chrome, crx
Qzoneexport
QQ空间导出助手,用于备份QQ空间的说说、日志、私密日记、相册、视频、留言板、QQ好友、收藏夹、分享、最近访客为文件,便于迁移与保存
Stars: ✭ 456 (+286.44%)
Mutual labels:  chrome-extension, chrome, crx
Crx Selection Translate
一站式划词 / 截图 / 网页全文 / 音视频翻译扩展。
Stars: ✭ 3,603 (+2953.39%)
Mutual labels:  chrome-extension, chrome, crx
Oscnews
Chrome 插件,查看开源中国软件更新资讯,文档导航,GitHub 趋势榜,linux命令索引,浏览历史记录和时钟页面。
Stars: ✭ 582 (+393.22%)
Mutual labels:  chrome-extension, chrome, crx
Gayhub
An awesome chrome extension for github
Stars: ✭ 995 (+743.22%)
Mutual labels:  chrome-extension, chrome, crx
Chrome Extension Guide
Chrome 扩展(插件) 开发官方文档中文版翻译
Stars: ✭ 85 (-27.97%)
Mutual labels:  chrome-extension, chrome
Seckill
Chrome浏览器 抢购、秒杀插件,秒杀助手,定时自动点击
Stars: ✭ 1,278 (+983.05%)
Mutual labels:  chrome-extension, crx
Vertical Tabs Chrome Extension
A chrome extension that presents your tabs vertically. Problem solved.
Stars: ✭ 117 (-0.85%)
Mutual labels:  chrome-extension, chrome
Website Blocker Chrome.ext
Website Blocker for Chrome Extension
Stars: ✭ 80 (-32.2%)
Mutual labels:  chrome-extension, chrome
Podstation
podStation is a web podcast aggregator for Chrome.
Stars: ✭ 76 (-35.59%)
Mutual labels:  chrome-extension, chrome
The Tab Of Words
A minimal Chrome / Firefox extension to help you learn Japanese words in each new tab.
Stars: ✭ 94 (-20.34%)
Mutual labels:  chrome-extension, chrome
Vbookmarks
A successor of Neat Bookmarks.
Stars: ✭ 61 (-48.31%)
Mutual labels:  chrome-extension, chrome
Save In
WebExtension for saving media, links, or selections into user-defined directories
Stars: ✭ 99 (-16.1%)
Mutual labels:  chrome-extension, chrome
Sillynium
Automate the creation of Python Selenium Scripts by drawing coloured boxes on webpage elements
Stars: ✭ 100 (-15.25%)
Mutual labels:  chrome-extension, chrome
Pixivbatchdownloader
Chrome 扩展,批量下载 Pixiv 的插画和小说。过滤作品、下载时重命名、转换动态图片等。Powerful Pixiv batch downloader. Batch download artworks and novels, filter works, rename when downloading, convert animated images, and more.
Stars: ✭ 1,109 (+839.83%)
Mutual labels:  chrome-extension, chrome
Booklight
Your Chrome Alfred - An Extension to provide spotlight-like interface for your bookmarks
Stars: ✭ 98 (-16.95%)
Mutual labels:  chrome-extension, chrome

How to edit Chrome Themes

Introduction

This is a guide to help you edit your existing Chrome themes to change the default text colors and background images on New Tab page. It is fairly simple to do, and should take around 15 minutes, more or less.

Getting started

You will need to have Google Chrome installed on your computer as well as some text editor. I like Sublime Text but feel free to use any editor you like better.

You will need to have downloaded a pre-existing Chrome theme to begin. Browse the theme store to find one you like, and hit "Add to Chrome". Once you have a theme, we will want to find the folder it saves to.

Find the folder with your theme

  • Windows

    You will need to show hidden files to see the folder. Do this by opening the Control Panel. If you're on Windows 8 or newer, the fastest way is Windows key+X, then P. Click into Appearance and Personalization, then Folder Options. Go to the View tab. There will be a list of advanced settings - we want to find the Hidden files and folders option. There should be two radio options - select the Show hidden files, folders, and drives* one. Click Apply and you're done.

    Open File Explorer (Windows+x, e) and navigate to this folder. User Name shoul be replaced by your user name. C:\Users\**User Name**\AppData\Local\Google\Chrome\User Data\Default\Extensions

  • OS X

    Open Terminal and type defaults write com.apple.finder AppleShowAllFiles YES to show hidden files. Navigate to ~/Library/Application Support/Google/Chrome/Default/Extensions to find the folder containing Chrome extensions.

  • Linux

    Open your file manager in root (sudo nautilus in Ubuntu) and press ctrl+h to see hidden files. Navigate to ~/.config/google-chrome/Default/Extensions/ to find the extensions. You could also enter into a Terminal: 'sudo vi ~/.config/google-chrome/Default/Extensions/' to edit the file directly.

Find your theme

In the folder you opened, you will find a long list of folders, all of which have titles that look like random letters.

One of these contains your theme, and the rest are other themes or extensions you have installed. Sort by Date Modified. The most recent one should be your theme, assuming this theme was the one you installed last. Open the folder, go into the version folder, and look for a file called manifest.json.

Edit manifest.json

The manifest.json file is the "command center" for your theme. It controls the layout and details of your theme. Right-click it and open it with a text editor. If you're in the right folder, it'll look something like this

You'll want to be careful with what you're editing in the manifest.json file, since it controls so much, but anything within the theme subsection should be fair game. Google provides their own official documentation for theme attributes. You can change text colors by changing the RGB values associated with them.

Changing images

You'll also see an images subsection in the manifest.json. Here you can specify what images will be used, and where. To change an image, you'll need to put the changes in the images folder, which can be found in the same place you found your manifest.json.

For example, if you'd rather have a different background image on the New Tab page, just rename your image eyes.png and copy/paste it into the theme's images folder, replacing the current tab.png as you do.

If you have a .jpg you want to use instead, that's fine. Just paste it into the images folder and change the line of code in the manifest to refer to your .jpg instead. In this example, if you had an image called cat.jpg, you would change line 22 to "theme_ntp_background": "images/cat.jpg",

Confirming changes and using new theme

To see how your new theme looks, you can add it to Chrome. To do this, you'll need to enable Developer Mode. Go to Your chrome settings (chrome://extensions) and check the Developer Mode box. Click Pack extension and a window will open allowing you to select your folder. Navigate to your extension's version folder and select it.

Click OK and then you are ready to Pack Extension. You will receive a success message saying that Chrome made you a .crx and a .pem. The .crx is your new theme! Go back to that folder and double click it, opening it in Chrome. There should be a message at the bottom confirming that you want to continue adding the theme - go ahead and click continue, then OK, and that's it. Admire your new theme and give yourself a pat on the back - you just made your own awesome theme!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].