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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enables you to load Javascript and CSS into websites."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gorilla Script- and Style-Loader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } ] } |