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
扩展基本信息
名称 | Gorilla Script- and Style-Loader |
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" } ] } |