CustomCSS Injector

Write any CSS rules for any websites

什么是CustomCSS Injector?

CustomCSS Injector是由Bryce开发的Chrome扩展程序,该扩展的主要功能是“Write any CSS rules for any websites”。

扩展截图

screenshot
screenshot
screenshot

下载CustomCSS Injector扩展crx文件

下载CustomCSS Injector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Originally developed as an Add-On for FireFox, Custom CSS Injector lets you write any CSS rules and apply them to any website you like. Change colours, backgrounds, resize and hide obtrusive elements. Anything you can do within the power of CSS!
Simply write the CSS you want to apply in the provided text field and click 'Save' (NO page refresh required!). Apply the CSS to the URL, Domain or Globally by using the radio buttons provided. There is also a whitelist/blacklist functionality to govern which websites you'd like to apply the CSS to.
Enjoy syntax highlighting and line numbers for code readability (Thanks to PrismJS!)                    

扩展基本信息

名称 CustomCSS Injector CustomCSS Injector
ID eknfhefneldkoocaeokkapahblmodika
官方URL https://chrome.google.com/webstore/detail/customcss-injector/eknfhefneldkoocaeokkapahblmodika
简介 Write any CSS rules for any websites
文件大小 37.96 KB
安装次数 95
当前版本 1.0
更新时间 2020-03-02
上架时间 2020-03-02
评分 2.50/5 共2次评分
开发者 Bryce
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CustomCSS Injector",
    "short_name": "CSS Injector",
    "version": "1.0",
    "description": "Write any CSS rules for any websites",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/CCSSI_icon_v2_48.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "",
        "contextMenus",
        "notifications"
    ],
    "browser_action": {
        "browser_style": true,
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "48": "icons\/CCSSI_icon_v2_48.png",
            "96": "icons\/CCSSI_icon_v2_96.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "customcss.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ]
}