StackOverflow focus
Remove all unnecessary clutter when looking for help on StackOverflow.
Hvad er StackOverflow focus?
StackOverflow focus er en Chrome-udvidelse udviklet af https://eliasruiz.com, og dens hovedfunktion er "Remove all unnecessary clutter when looking for help on StackOverflow.".
Udvidelsesskærmbilleder
Download StackOverflow focus-udvidelses-CRX-fil
Download StackOverflow focus-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | StackOverflow focus |
ID | gaeipjkcdkpbfdfmakonllgiboaonopp |
Officiel URL | https://chromewebstore.google.com/detail/stackoverflow-focus/gaeipjkcdkpbfdfmakonllgiboaonopp |
Beskrivelse | Remove all unnecessary clutter when looking for help on StackOverflow. |
Filstørrelse | 293 KB |
Antal Installationer | 699 |
Nuværende Version | 1.3 |
Senest Opdateret | 2021-08-03 |
Udgivelsesdato | 2020-07-17 |
Bedømmelse | 4.88/5 Samlet 17 Bedømmelser |
Udvikler | https://eliasruiz.com |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/elrumo/stackOverflow_focus |
Hjælpeside-URL | https://github.com/elrumo/stackOverflow_focus |
Understøttede Sprog | 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" } } |