Custom Stylesheet & Script
Inserts a custom stylesheet and script into every web page.
Custom Stylesheet & Scriptคืออะไร?
Custom Stylesheet & Script เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://rufflewind.com และคุณลักษณะหลักของมันคือ "Inserts a custom stylesheet and script into every web page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Custom Stylesheet & Script
ดาวน์โหลดไฟล์ส่วนขยาย Custom Stylesheet & Script ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is simple extension that inserts custom JavaScript and CSS code into each web page, allowing you to modify the way it behaves and looks. The default installation does nothing. You'll have to provide the script and stylesheet yourself. An example can be found here: https://github.com/Rufflewind/chrome_script/tree/master/example To edit the script and stylesheet, go to chrome://extensions and click "Options" under "Custom Stylesheet & Script". The text areas in the "Options" tab will automatically save as you edit. Existing pages are not affected until refreshed. Note: jQuery NOT included anymore as of 2.0.0. Bug reports: https://github.com/Rufflewind/chrome_script/issues Changelog: https://github.com/Rufflewind/chrome_script/releases
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Custom Stylesheet & Script |
ID | hojkciooaohipljgobfikbkjcehockld |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/custom-stylesheet-script/hojkciooaohipljgobfikbkjcehockld |
คำอธิบาย | Inserts a custom stylesheet and script into every web page. |
ขนาดไฟล์ | 13.94 KB |
จำนวนการติดตั้ง | 833 |
เวอร์ชันปัจจุบัน | 2.1.0 |
อัปเดตครั้งล่าสุด | 2019-07-16 |
วันที่เผยแพร่ | 2019-07-15 |
คะแนน | 3.57/5 รวมทั้งหมด 14 คะแนน |
ผู้พัฒนา | https://rufflewind.com |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Rufflewind/chrome_script |
URL หน้าช่วยเหลือ | https://github.com/Rufflewind/chrome_script/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "2.1.0", "name": "Custom Stylesheet & Script", "description": "Inserts a custom stylesheet and script into every web page.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "*:\/\/*\/" ], "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_start" } ], "commands": { "options": { "description": "Open options" } } } |