Jimmy's CSS Injector

This extension changes css style for a specific page using style injection.

什麼是Jimmy's CSS Injector?

Jimmy's CSS Injector是由jimmyruan12開發的Chrome擴展程式,該擴展的主要功能是“This extension changes css style for a specific page using style injection.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Jimmy's CSS Injector擴展crx文件

下載Jimmy's CSS Injector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Simple chrome extension that can inject css into the existing web page.
This app can accomplish the following:
1. Inject css into the existing web page.
2. It allows saving multiple css styles in the chrome system.
3. It can undo injected css style.                    

擴展基本資訊

名稱 Jimmy's CSS Injector Jimmy's CSS Injector
ID cdelafiegdlpmfomhfcckgaihmclcgmd
官方網址 https://chrome.google.com/webstore/detail/jimmys-css-injector/cdelafiegdlpmfomhfcckgaihmclcgmd
簡介 This extension changes css style for a specific page using style injection.
檔案大小 2.21 MB
安裝次數 40
目前版本 1.10.1
更新時間 2017-09-07
上架時間 2017-09-07
評分 2.00/5 共 1 次評分
開發者 jimmyruan12
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jimmy's CSS Injector",
    "short name": "css injector",
    "description": "This extension changes css style for a specific page using style injection.",
    "version": "1.10.1",
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "16": "icons\/icon16.png"
    },
    "page_action": {
        "default_icon": "icons\/icon16.png",
        "default_popup": "popup.html",
        "default_title": "PageFontStyle"
    },
    "background": {
        "scripts": [
            "js\/helper.js",
            "js\/eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-3.1.0.min.js",
                "js\/helper.js",
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "tts",
        "storage",
        "webNavigation",
        "*:\/\/*\/*"
    ]
}