Improvements
Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.
What is Improvements?
Improvements is a Chrome extension developed by Dusan Halicky, and its main feature is "Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.".
Extension Screenshots
Download Improvements Extension CRX File
Download Improvements 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
What is it? Improvements is chrome extension. It allows you to define JS code to be executed on sites you specify. It requires knowledge of JS, intended audience are programmers. How to use it? Let's say you want light gray background on www.google.sk. Open settings site, add "www.google.sk" to the "Page" input and type in this code: document.body.style.backgroundColor = 'silver'; Hit "Save" button and when you visit www.google.sk, the background will be light gray.
Extension Basic Information
Name | Improvements |
ID | hgepjkljpdmlhppinimgmfackfddmhim |
Official URL | https://chromewebstore.google.com/detail/improvements/hgepjkljpdmlhppinimgmfackfddmhim |
Description | Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc. |
File Size | 95.56 KB |
Installation Count | 33 |
Current Version | 0.1.14 |
Last Updated | 2018-08-09 |
Publish Date | 2018-08-09 |
Developer | Dusan Halicky |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://ghost.sk/privacy-policy.html |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Improvements", "short_name": "Improvements", "description": "Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.", "version": "0.1.14", "options_page": "settings.html", "minimum_chrome_version": "38", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs", "contextMenus", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": "icon\/19.png" }, "icons": { "16": "icon\/16.png", "19": "icon\/19.png", "32": "icon\/32.png", "48": "icon\/48.png", "128": "icon\/128.png" } } |