CSS Injector
Inject custom css to specified web page
CSS Injectorคืออะไร?
CSS Injector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Inject custom css to specified web page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CSS Injector
ดาวน์โหลดไฟล์ส่วนขยาย CSS Injector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Inject custom css to specified web page
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | CSS Injector |
ID | bonanlhbgkbmdbpgmljgpkcihiccfbha |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/css-injector/bonanlhbgkbmdbpgmljgpkcihiccfbha |
คำอธิบาย | Inject custom css to specified web page |
ขนาดไฟล์ | 142 KB |
จำนวนการติดตั้ง | 28 |
เวอร์ชันปัจจุบัน | 0.2 |
อัปเดตครั้งล่าสุด | 2022-03-29 |
วันที่เผยแพร่ | 2022-03-29 |
ผู้พัฒนา | Unknown |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/m-masataka/css-injector-extension |
ภาษาที่รองรับ | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CSS Injector", "manifest_version": 3, "version": "0.2", "permissions": [ "activeTab", "storage" ], "options_page": "index.html", "background": { "service_worker": "background.js" }, "action": { "default_icon": "disabled.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |