StackOverflow focus
Remove all unnecessary clutter when looking for help on StackOverflow.
StackOverflow focusคืออะไร?
StackOverflow focus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://eliasruiz.com และคุณลักษณะหลักของมันคือ "Remove all unnecessary clutter when looking for help on StackOverflow."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย StackOverflow focus
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } } |