Sigarra Dark Theme
Makes FEUP's Sigarra dark
Sigarra Dark Theme क्या है?
Sigarra Dark Theme c0brastrigger द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes FEUP's Sigarra dark"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Sigarra Dark Theme एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
All the code is available on GitHub: https://github.com/c0bras/Sigarra-Dark-Theme This extension is open-source, so feel free to use or edit it if you want. This chrome extension turns FEUP's Sigarra darker, so that it's easier on the eye. Feel free to contribute by letting me know if you found a bug, or if you have an idea that would be good for the extension. Changelog: 17.10.2017: v1.4 (optimized) - Seriously optimized the extension 20.02.2017: v1.3.1 - Fixed wrong color contrast, in Sigarra's cookie alert on the top 5.02.2017: v1.3 - Added better contrast to student name, on the upper panel 4.02.2017: v1.2 (later update) - Fixed bug at the cantina page - Code was optimized so it uses less resources 4.02.2017: v1.1 - Fixed white flickering - Project is now available on GitHub 3.02.2017: v1.0 - The extension was published
एक्सटेंशन की मूल जानकारी
नाम | Sigarra Dark Theme |
ID | lcmklemnoccdfakiabobhgjpeoeoboil |
आधिकारिक URL | https://chromewebstore.google.com/detail/sigarra-dark-theme/lcmklemnoccdfakiabobhgjpeoeoboil |
विवरण | Makes FEUP's Sigarra dark |
फ़ाइल का आकार | 10.03 KB |
स्थापना संख्या | 13 |
वर्तमान संस्करण | 1.4 |
अंतिम अपडेट | 2017-10-17 |
प्रकाशन तिथि | 2017-10-17 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | c0brastrigger |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | pt-PT |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sigarra Dark Theme", "description": "Makes FEUP's Sigarra dark", "version": "1.4", "permissions": [ "activeTab" ], "icons": { "128": "logo_preto.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/sigarra.up.pt\/feup\/*" ], "js": [ "background.js" ], "run_at": "document_start" } ], "browser_action": { "default_title": "Sigarra Dark Theme", "default_icon": "logo_preto.png" }, "manifest_version": 2, "web_accessible_resources": [ "css_dark.css" ] } |