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 |
公式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 |
Eメール | [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" } } |