Jimmy's CSS Injector

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

Jimmy's CSS Injectorคืออะไร?

Jimmy's CSS Injector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jimmyruan12 และคุณลักษณะหลักของมันคือ "This extension changes css style for a specific page using style injection."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Jimmy's CSS Injector

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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",
        "*:\/\/*\/*"
    ]
}