StackOverflow focus
Remove all unnecessary clutter when looking for help on StackOverflow.
什麼是StackOverflow focus?
StackOverflow focus是由https://eliasruiz.com開發的Chrome擴展程式,該擴展的主要功能是“Remove all unnecessary clutter when looking for help on StackOverflow.”。
擴展截圖
下載StackOverflow focus擴展crx文件
下載StackOverflow focus擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } |