Gorilla Script- and Style-Loader
Enables you to load Javascript and CSS into websites.
Gorilla Script- and Style-Loaderคืออะไร?
Gorilla Script- and Style-Loader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://gorilla.moe และคุณลักษณะหลักของมันคือ "Enables you to load Javascript and CSS into websites."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gorilla Script- and Style-Loader
ดาวน์โหลดไฟล์ส่วนขยาย Gorilla Script- and Style-Loader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Enables you to load Javascript and CSS into websites.
I mostly use this for debugging purposes and quick and hacky dev sessions.
Changelog
=========
4.0.1
- Use regex domains instead of fixed hostnames
- Fix CSS Injection (Thanks to Patrick Ewald)
3.0.1
-----
- UI: Add Drag Icons
- Fix Hostname not correctly saved
- UI: Add save button
- UI: Add transitions when disabling items
- UI: Prevent drag in input fields ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | pmhjddnookgenpppkebkfdpboeamglla |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gorilla-script-and-style/pmhjddnookgenpppkebkfdpboeamglla |
| คำอธิบาย | Enables you to load Javascript and CSS into websites. |
| ขนาดไฟล์ | 19.97 KB |
| จำนวนการติดตั้ง | 64 |
| เวอร์ชันปัจจุบัน | 4.1.0 |
| อัปเดตครั้งล่าสุด | 2019-03-17 |
| วันที่เผยแพร่ | 2019-03-12 |
| ผู้พัฒนา | https://gorilla.moe |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Gorilla Script- and Style-Loader",
"version": "4.1.0",
"description": "Enables you to load Javascript and CSS into websites.",
"default_locale": "en",
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"96": "icons\/icon-96.png"
},
"options_page": "options.html",
"permissions": [
"tabs",
"activeTab",
"storage"
],
"browser_action": {
"default_icon": "icons\/icon-38.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"boot.js"
],
"run_at": "document_start"
}
]
} | |