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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}