StackOverflow that 90's Theme
Add unnecessary clutter to give that 90's feeling to StackOverflow
StackOverflow that 90's Theme क्या है?
StackOverflow that 90's Theme Alexander द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add unnecessary clutter to give that 90's feeling to StackOverflow"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में StackOverflow that 90's Theme एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Chrome extension to modify StackOverflow.com theme and some other stackexchange sites to the 2019 April fools theme. Based on https://stackapps.com/questions/8287/2019-april-fools-day-retro-theme Source code: https://github.com/Alexrgs/Retro_StackOverflow Special Thanks/Credits https://github.com/a-stone-arachnid/Time-Travel-Mode https://github.com/tholman/90s-cursor-effects Icons made by freepik
एक्सटेंशन की मूल जानकारी
नाम | StackOverflow that 90's Theme |
ID | dhljglinknmoehnmefabbgcimlknopba |
आधिकारिक URL | https://chromewebstore.google.com/detail/stackoverflow-that-90s-th/dhljglinknmoehnmefabbgcimlknopba |
विवरण | Add unnecessary clutter to give that 90's feeling to StackOverflow |
फ़ाइल का आकार | 87.04 KB |
स्थापना संख्या | 30 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2021-01-18 |
प्रकाशन तिथि | 2021-01-18 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Alexander |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "StackOverflow that 90's Theme", "version": "1.0.0", "icons": { "512": "party.png" }, "description": "Add unnecessary clutter to give that 90's feeling to StackOverflow", "content_scripts": [ { "js": [ "jquery-3.5.1.min.js", "fairyDustCursor.js", "content.js" ], "css": [ "content.css" ], "matches": [ "https:\/\/*.stackoverflow.com\/", "https:\/\/*.stackoverflow.com\/questions\/*", "https:\/\/*.stackoverflow.com\/questions?*", "https:\/\/*.stackoverflow.com\/tags\/*", "https:\/\/*.stackoverflow.com\/users\/*", "https:\/\/*.stackoverflow.com\/unanswered\/*", "https:\/\/*.askubuntu.com\/questions\/*", "https:\/\/*.serverfault.com\/questions\/*", "https:\/\/*.superuser.com\/questions\/*", "https:\/\/*.stackapps.com\/questions\/*", "https:\/\/*.mathoverflow.net\/questions\/*" ], "run_at": "document_start" } ], "permissions": [], "browser_action": { "default_name": "StackOverflow 90's Theme", "default_icon": "party.png" } } |