Custom Stylesheet & Script
Inserts a custom stylesheet and script into every web page.
Custom Stylesheet & Script क्या है?
Custom Stylesheet & Script https://rufflewind.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inserts a custom stylesheet and script into every web page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Custom Stylesheet & Script एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } } |