StackOverflow Power User
Stop wasting time while programming! Adds many features to save time when searching for solutions on StackOverflow
StackOverflow Power Userคืออะไร?
StackOverflow Power User เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anthonin Cocagne และคุณลักษณะหลักของมันคือ "Stop wasting time while programming! Adds many features to save time when searching for solutions on StackOverflow"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย StackOverflow Power User
ดาวน์โหลดไฟล์ส่วนขยาย StackOverflow Power User ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Because every developer wants to find the best answer to their problems, and because we hate wasting time! Features : - Show answers sidebar (with vote counts) & inform you if you have previously upvoted an answer - Show indicator when there's a better answer than the accepted one - Show indicator when there isn't any answer to the question - Auto-scroll to first answer - Navigate through answers with keyboard arrow keys (left/right) - Auto expand votes count & Show answer quality score (in percent) - Make page wider to take full advantage of large screens - Bring scrolling behavior to vote buttons, so that you still see them even on long posts - Expand all comments automatically when performing CMD/Ctrl + F - Hide the new StackOverflow left sidebar that takes so much space for useless links - Hide elements from StackOverflow right sidebar to prevent distraction The extension is open-source : https://github.com/AnthoPakPak/StackOverflowPowerUser
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | StackOverflow Power User |
ID | dghoicnlchonhhkccfmjpjconhpajhdg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/stackoverflow-power-user/dghoicnlchonhhkccfmjpjconhpajhdg |
คำอธิบาย | Stop wasting time while programming! Adds many features to save time when searching for solutions on StackOverflow |
ขนาดไฟล์ | 136 KB |
จำนวนการติดตั้ง | 1,879 |
เวอร์ชันปัจจุบัน | 0.4.2 |
อัปเดตครั้งล่าสุด | 2023-01-24 |
วันที่เผยแพร่ | 2020-05-11 |
คะแนน | 4.92/5 รวมทั้งหมด 25 คะแนน |
ผู้พัฒนา | Anthonin Cocagne |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "StackOverflow Power User", "short_name": "SO Power User", "version": "0.4.2", "description": "Stop wasting time while programming! Adds many features to save time when searching for solutions on StackOverflow", "content_scripts": [ { "css": [ "css\/content_style.css", "css\/floating_sidebar.css" ], "js": [ "js\/main.js", "js\/helper.js", "js\/features\/better_answer.js", "js\/features\/bypass_min_rep_view_vote_counts.js", "js\/features\/expand_votes_counts.js", "js\/features\/floating_sidebar.js", "js\/features\/hiding_content.js", "js\/features\/misc_features.js", "js\/features\/no_answer.js", "js\/features\/navigate_through_answers.js", "js\/features\/screen_features.js" ], "matches": [ "https:\/\/*.stackoverflow.com\/questions\/*\/*", "https:\/\/*.superuser.com\/questions\/*\/*", "https:\/\/*.stackexchange.com\/questions\/*\/*", "https:\/\/*.stackapps.com\/*\/*", "https:\/\/*.askubuntu.com\/*\/*", "https:\/\/*.serverfault.com\/*\/*", "https:\/\/*.mathoverflow.net\/*\/*", "https:\/\/*.meta.stackoverflow.com\/*\/*", "https:\/\/*.meta.stackexchange.com\/*\/*" ] } ], "web_accessible_resources": [ { "resources": [ "img\/*", "js\/externals\/bypass_min_rep_view_vote_counts_script.js" ], "matches": [ " |