Gorilla Script- and Style-Loader
Enables you to load Javascript and CSS into websites.
什麼是Gorilla Script- and Style-Loader?
Gorilla Script- and Style-Loader是由https://gorilla.moe開發的Chrome擴展程式,該擴展的主要功能是“Enables you to load Javascript and CSS into websites.”。
擴展截圖
下載Gorilla Script- and Style-Loader擴展crx文件
下載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 |
| 官方網址 | 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"
}
]
} | |