Dislike Button

Adds a dislike button to Schoology!

Dislike Button là gì?

Dislike Button là một tiện ích mở rộng Chrome được phát triển bởi bendominedeveloper, và tính năng chính của nó là "Adds a dislike button to Schoology!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Dislike Button

Tải xuống các tệp mở rộng Dislike Button dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Schoology is an education platform used by many schools to track assignments, classes, and provide announcements. Schoology also contains a number of text channels for communication between students and teachers. These posts and comments have a like button already, which allows users to provide positive feedback on those posts. However, noticeably absent is a button to provide negative feedback, or a dislike button. If a user wants to provide such feedback, their only recourse is to reply with a comment, which is in many cases subject to stigma and is not anonymous. This makes it very difficult, and uncommon, for users to provide any sort of constructive criticism.

This extension rectifies this issue by adding a dislike button to all posts and comments. It's anonymous, but still secure. The extension allows users a risk-free way to provide their constructive, negative feedback while preventing the hurtful speech necessarily found when users are forced to comment on posts instead of simply pressing the dislike button.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Dislike Button Dislike Button
ID ohdidajmhgjaeineikmdnninbfjjnihd
URL Chính Thức https://chromewebstore.google.com/detail/dislike-button/ohdidajmhgjaeineikmdnninbfjjnihd
Mô tả Adds a dislike button to Schoology!
Kích Thước Tệp 165 KB
Số Lần Cài Đặt 121
Phiên Bản Hiện Tại 1.0.1.0
Cập Nhật Lần Cuối 2023-12-13
Ngày Phát Hành 2023-10-26
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển bendominedeveloper
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://github.com/bendomine/schoology-dislike-button-extension/blob/b3089c9a43d9287d52e1302847e6ed40274ab049/privacy%20policy.txt
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dislike Button",
    "description": "Adds a dislike button to Schoology!",
    "version": "1.0.1.0",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/main.js"
            ],
            "css": [
                "scripts\/main.css"
            ],
            "matches": [
                "https:\/\/kehillah.schoology.com\/*"
            ],
            "run-at": "document-end"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "images\/icons_sprite_feed_modified.png",
                "images\/icons_sprite_feed.png"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon128.png"
    }
}