Sites custom codes - inject CSS and JS

Simple tool to inject your CSS and JS codes in sites

什么是Sites custom codes - inject CSS and JS?

Sites custom codes - inject CSS and JS是由Somonator开发的Chrome扩展程序,该扩展的主要功能是“Simple tool to inject your CSS and JS codes in sites”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Sites custom codes - inject CSS and JS扩展crx文件

下载Sites custom codes - inject CSS and JS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        I created this tool for myself, but still decided to publish it. Its goal is to easily embed your own CSS and JS codes into websites.

I don't like the way some sites look or work. For example, the video player window is too small or the light theme burns my eyes at night. Well, sometimes, I may need a tool to automate something on the site.

The extension is intended to solve this problem.


Main features:
Simple script management from admin panel
Ability to use remote files
Run based of patterns URL (chrome extension inject api) or manually from popup
Convenient code editor based on CodeMirror
Import / Export scripts from json                    

扩展基本信息

名称 Sites custom codes - inject CSS and JS Sites custom codes - inject CSS and JS
ID ogojpgiamblcmpgombckcpfnaighgagd
官方URL https://chromewebstore.google.com/detail/sites-custom-codes-inject/ogojpgiamblcmpgombckcpfnaighgagd
简介 Simple tool to inject your CSS and JS codes in sites
文件大小 403 KB
安装次数 198
当前版本 0.4
更新时间 2021-11-23
上架时间 2021-11-15
评分 5.00/5 共2次评分
开发者 Somonator
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://vk.com/doc-200312453_585455412
支持的语言 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "author": "Somonator",
    "version": "0.4",
    "default_locale": "en",
    "manifest_version": 2,
    "minimum_chrome_version": "55.0",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        ""
    ],
    "options_page": "options-page.html",
    "browser_action": {
        "default_icon": {
            "19": "icon.png",
            "38": "icon.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "extension\/api.js",
            "extension\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "extension\/inject-scripts.js",
                "extension\/content.js"
            ]
        }
    ]
}