Stylized Scrollbar
Stylize your scroll bar from a handful of presets
Stylized Scrollbar क्या है?
Stylized Scrollbar Andrew Li द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Stylize your scroll bar from a handful of presets"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Stylized Scrollbar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
An extension that customizes your scroll bar to either a black or white one. Works on all websites and can be changed on the fly into black or white. Check out the style of the scroll bar above
एक्सटेंशन की मूल जानकारी
नाम | Stylized Scrollbar |
ID | igpchmaapelclmhofnheepclmfniobnc |
आधिकारिक URL | https://chromewebstore.google.com/detail/stylized-scrollbar/igpchmaapelclmhofnheepclmfniobnc |
विवरण | Stylize your scroll bar from a handful of presets |
फ़ाइल का आकार | 449 KB |
स्थापना संख्या | 57 |
वर्तमान संस्करण | 0.1.0 |
अंतिम अपडेट | 2021-01-23 |
प्रकाशन तिथि | 2021-01-22 |
डेवलपर | Andrew Li |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/Zeyu-Li/scroll_with_style |
सहायता पृष्ठ URL | https://github.com/Zeyu-Li/scroll_with_style/discussions/categories/bugs |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Stylized Scrollbar", "author": "Andrew Li", "version": "0.1.0", "manifest_version": 2, "description": "Stylize your scroll bar from a handful of presets", "permissions": [ "storage" ], "icons": { "128": "images\/icon_128.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "popup.html", "default_title": "Custom Scrollbar" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ] } ], "options_page": "popup.html" } |