Dislike Button

Adds a dislike button to Schoology!

什麼是Dislike Button?

Dislike Button是由bendominedeveloper開發的Chrome擴展程式,該擴展的主要功能是“Adds a dislike button to Schoology!”。

擴展截圖

screenshot

下載Dislike Button擴展crx文件

下載Dislike Button擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}