StackOverflow focus
Remove all unnecessary clutter when looking for help on StackOverflow.
StackOverflow focus क्या है?
StackOverflow focus https://eliasruiz.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove all unnecessary clutter when looking for help on StackOverflow."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में StackOverflow focus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Available on Firefox: https://addons.mozilla.org/en-US/firefox/addon/stackoverflow-focus/ **New** 1.3 This update brings the focus experience to all of the StackExchange platform and not just StackOverflow. 1.2 Flicker removed, now it's much quicker to apply the distraction free experience when opening a StackOverflow page. Special thanks to https://vantezzen.io for this update. 1.1.0 Some minor bus fixed. Option to remove drop shadow. Option to customise the background colour. The plugin now works with all localised versions of StackOverflow. Make sure to check out my other product, WebBites.io, a new and modern bookmarking tool. With a focus on aesthetics and accessibility. https://webbites.io.
एक्सटेंशन की मूल जानकारी
नाम | StackOverflow focus |
ID | gaeipjkcdkpbfdfmakonllgiboaonopp |
आधिकारिक URL | https://chromewebstore.google.com/detail/stackoverflow-focus/gaeipjkcdkpbfdfmakonllgiboaonopp |
विवरण | Remove all unnecessary clutter when looking for help on StackOverflow. |
फ़ाइल का आकार | 293 KB |
स्थापना संख्या | 699 |
वर्तमान संस्करण | 1.3 |
अंतिम अपडेट | 2021-08-03 |
प्रकाशन तिथि | 2020-07-17 |
रेटिंग | 4.88/5 कुल 17 रेटिंग्स |
डेवलपर | https://eliasruiz.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/elrumo/stackOverflow_focus |
सहायता पृष्ठ URL | https://github.com/elrumo/stackOverflow_focus |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "StackOverflow focus", "version": "1.3", "icons": { "128": "icon.png" }, "description": "Remove all unnecessary clutter when looking for help on StackOverflow.", "content_scripts": [ { "js": [ "content.js" ], "css": [ "content.css" ], "matches": [ "https:\/\/stackoverflow.com\/questions\/*", "https:\/\/superuser.com\/questions\/*", "https:\/\/serverfault.com\/questions\/*", "https:\/\/askubuntu.com\/questions\/*", "https:\/\/askubuntu.com\/questions\/*", "https:\/\/ja.stackexchange.com\/questions\/*", "https:\/\/*.stackexchange.com\/questions\/*" ], "run_at": "document_start" } ], "permissions": [ "activeTab", "storage" ], "browser_action": { "default_name": "StackOverflow Focus", "default_icon": "icon.png", "default_popup": "popup.html" } } |