Upvote First for StackOverflow

Places your upvoted answers first. Useful when re-visiting questions. Works on all StackExchange sites.

Upvote First for StackOverflowคืออะไร?

Upvote First for StackOverflow เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jossef Harush และคุณลักษณะหลักของมันคือ "Places your upvoted answers first. Useful when re-visiting questions. Works on all StackExchange sites."

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Upvote First for StackOverflow

ดาวน์โหลดไฟล์ส่วนขยาย Upvote First for StackOverflow ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Chrome extension that sorts StackOverflow answers by your upvotes.

Open source
https://github.com/jossef/stackoverflow-upvote-first


Why I did this?
---------------

I find myself re-visit StackOverflow questions I've already read.

When there are multiple answers (and approaches to solve something), I upvote my chosen answer

Some time later, I find myself re-visit that question. Since I want to spare that research i already did in the past, I try to find the upvoted answers made by my user (to get an acknowledge by myself).


Scrolling down?
----------------

What bothers me in this process is the fact that answers aren't always at the top and i have to scroll down to the bottom to see them.

That's sucks. Therefore I made this chrome extension that re-sorts the answers by your votes. For instance, if you upvoted an answer and revisited that question later, it will appear first in the answers list


Background
----------

I suggested this feature on Meta StackExchange. However, upon this day I still waited and it seems this might not got the attention of their Product Manager.

Since I see StackOverflow as an important tool in my daily routine, I implemented this chrome extension as a weekend project mainly to help myself and other developers be more productive :+1:.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Upvote First for StackOverflow Upvote First for StackOverflow
ID jafbgebfjkfejghbdeohaadmfghkmjlo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/upvote-first-for-stackove/jafbgebfjkfejghbdeohaadmfghkmjlo
คำอธิบาย Places your upvoted answers first. Useful when re-visiting questions. Works on all StackExchange sites.
ขนาดไฟล์ 112 KB
จำนวนการติดตั้ง 56
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2022-04-26
วันที่เผยแพร่ 2018-12-23
คะแนน 4.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Jossef Harush
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jossef/stackoverflow-upvote-first
URL หน้าช่วยเหลือ https://github.com/jossef/stackoverflow-upvote-first
URL หน้านโยบายความเป็นส่วนตัว https://github.com/jossef/policies/blob/master/privacy.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Jossef Harush",
    "manifest_version": 3,
    "name": "Upvote First for StackOverflow",
    "short_name": "Upvote First",
    "description": "Places your upvoted answers first. Useful when re-visiting questions. Works on all StackExchange sites.",
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "16": "icons\/icon-16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.mathoverflow.net\/*",
                "http:\/\/*.mathoverflow.net\/*",
                "https:\/\/*.superuser.com\/*",
                "http:\/\/*.superuser.com\/*",
                "https:\/\/*.stackoverflow.com\/*",
                "http:\/\/*.stackoverflow.com\/*",
                "https:\/\/*.serverfault.com\/*",
                "http:\/\/*.serverfault.com\/*",
                "https:\/\/*.stackapps.com\/*",
                "http:\/\/*.stackapps.com\/*",
                "https:\/\/*.stackexchange.com\/*",
                "http:\/\/*.stackexchange.com\/*",
                "https:\/\/*.stackoverflow.com\/*",
                "http:\/\/*.stackoverflow.com\/*",
                "https:\/\/*.askubuntu.com\/*",
                "http:\/\/*.askubuntu.com\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/content-script.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icons\/icon-48.png",
        "default_popup": "views\/browser-action.html",
        "default_title": "sort StackOverflow answers by your upvotes"
    },
    "permissions": [
        "background",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*.mathoverflow.net\/*",
        "http:\/\/*.mathoverflow.net\/*",
        "https:\/\/*.superuser.com\/*",
        "http:\/\/*.superuser.com\/*",
        "https:\/\/*.stackoverflow.com\/*",
        "http:\/\/*.stackoverflow.com\/*",
        "https:\/\/*.serverfault.com\/*",
        "http:\/\/*.serverfault.com\/*",
        "https:\/\/*.stackapps.com\/*",
        "http:\/\/*.stackapps.com\/*",
        "https:\/\/*.stackexchange.com\/*",
        "http:\/\/*.stackexchange.com\/*",
        "https:\/\/*.stackoverflow.com\/*",
        "http:\/\/*.stackoverflow.com\/*",
        "https:\/\/*.askubuntu.com\/*",
        "http:\/\/*.askubuntu.com\/*"
    ],
    "offline_enabled": true,
    "version": "1.1.0"
}