StackEye

Follow Questions & Users on StackOverflow & All StackExchange Sites. Get notifications for new answers/comments. Learn from experts

StackEyeคืออะไร?

StackEye เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://stackxyz.com และคุณลักษณะหลักของมันคือ "Follow Questions & Users on StackOverflow & All StackExchange Sites. Get notifications for new answers/comments. Learn from experts"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย StackEye

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

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

                        Ever thought on receiving notifications on a question on StackOverflow or other StackExchange sites ? If yes, you have landed at the right place. StackEye helps you watch any question on StackOverflow and other StackExchange sites. Just click on the eye icon to watch a question or unwtach it and be notified about new answers/comments on the question.

Now, no more waiting for any update on question. Just sit back and new answer and comment will knock your browser. Just check your extension icon, it will show the unread notifications.

StackEye v2.0 brings another great feature to follow users. Now, you can go to profile page of the user you want to follow and hit Follow button. Now, follow the great people on StackExchange network and keep learning from their questions/answers.

Latest Features
- Import & Export your data
- Clear all notifications in single click
- Clear all followed questions and users in single click

StackEye - Keep watching Keep Learning.
Github - https://github.com/stackxyz/stackeye                    

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

ชื่อ StackEye StackEye
ID pihfndpmcafdecheofkjfkadecoogigm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/stackeye/pihfndpmcafdecheofkjfkadecoogigm
คำอธิบาย Follow Questions & Users on StackOverflow & All StackExchange Sites. Get notifications for new answers/comments. Learn from experts
ขนาดไฟล์ 542 KB
จำนวนการติดตั้ง 1,196
เวอร์ชันปัจจุบัน 21.8.24
อัปเดตครั้งล่าสุด 2021-08-25
วันที่เผยแพร่ 2019-02-13
คะแนน 4.64/5 รวมทั้งหมด 28 คะแนน
ผู้พัฒนา https://stackxyz.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://stackxyz.com/stackeye
URL หน้าช่วยเหลือ https://github.com/stackxyz/stackeye
URL หน้านโยบายความเป็นส่วนตัว https://requestly.io/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "StackEye",
    "version": "21.8.24",
    "manifest_version": 2,
    "description": "Follow Questions & Users on StackOverflow & All StackExchange Sites. Get notifications for new answers\/comments. Learn from experts",
    "background": {
        "scripts": [
            "src\/shared\/analytics.js",
            "src\/libs\/jquery-1.9.1.js",
            "src\/shared\/globals.js",
            "src\/shared\/analyticsHelper.js",
            "src\/shared\/api_methods.js",
            "src\/shared\/shared.js",
            "src\/background\/watchQuestion.js",
            "src\/background\/followUser.js",
            "src\/background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/questions\/*"
            ],
            "js": [
                "src\/libs\/jquery-1.9.1.js",
                "src\/content_scripts\/questionPage.js"
            ],
            "css": [
                "src\/content_scripts\/cs.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/users\/*"
            ],
            "js": [
                "src\/libs\/jquery-1.9.1.js",
                "src\/content_scripts\/profilePage.js"
            ],
            "css": [
                "src\/content_scripts\/cs.css"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "browser_action": {
        "default_icon": "resources\/images\/icon_so_48.png",
        "default_title": "Get latest notifications on your favorite questions",
        "default_popup": "src\/popup\/popup.html"
    },
    "icons": {
        "16": "resources\/images\/icon_so_48.png",
        "48": "resources\/images\/icon_so_48.png",
        "128": "resources\/images\/icon_so_48.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "*:\/\/*.askubuntu.com\/*",
        "*:\/\/*.mathoverflow.net\/*",
        "*:\/\/*.serverfault.com\/*",
        "*:\/\/*.stackapps.com\/*",
        "*:\/\/*.stackexchange.com\/*",
        "*:\/\/*.stackoverflow.com\/*",
        "*:\/\/*.superuser.com\/*"
    ],
    "web_accessible_resources": [
        "resources\/icons\/eye-open\/128.png",
        "resources\/icons\/eye-closed\/128.png"
    ]
}