Dislike Button

Adds a dislike button to Schoology!

Dislike Button란 무엇입니까?

Dislike Button은(는) bendominedeveloper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a dislike button to Schoology!"입니다.

확장 프로그램 스크린샷

screenshot

Dislike Button 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Dislike Button Dislike Button
ID ohdidajmhgjaeineikmdnninbfjjnihd
공식 URL https://chromewebstore.google.com/detail/dislike-button/ohdidajmhgjaeineikmdnninbfjjnihd
설명 Adds a dislike button to Schoology!
파일 크기 165 KB
설치 횟수 121
현재 버전 1.0.1.0
최근 업데이트 2023-12-13
출시 날짜 2023-10-26
평점 5.00/5 총 4 개의 평점
개발자 bendominedeveloper
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://github.com/bendomine/schoology-dislike-button-extension/blob/b3089c9a43d9287d52e1302847e6ed40274ab049/privacy%20policy.txt
지원되는 언어 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"
    }
}