Improvements
Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.
什么是Improvements?
Improvements是由Dusan Halicky开发的Chrome扩展程序,该扩展的主要功能是“Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.”。
扩展截图
下载Improvements扩展crx文件
下载Improvements扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Improvements |
ID | hgepjkljpdmlhppinimgmfackfddmhim |
官方URL | https://chromewebstore.google.com/detail/improvements/hgepjkljpdmlhppinimgmfackfddmhim |
简介 | Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc. |
文件大小 | 95.56 KB |
安装次数 | 33 |
当前版本 | 0.1.14 |
更新时间 | 2018-08-09 |
上架时间 | 2018-08-09 |
开发者 | Dusan Halicky |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://ghost.sk/privacy-policy.html |
支持的语言 | 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" } } |