Search Bar for Classroom

A search bar for the Google Classroom assignments stream

Search Bar for Classroom là gì?

Search Bar for Classroom là một tiện ích mở rộng Chrome được phát triển bởi Micah Cantor, và tính năng chính của nó là "A search bar for the Google Classroom assignments stream".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Search Bar for Classroom

Tải xuống các tệp mở rộng Search Bar for Classroom 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

                        Note: If you use this extension and get an error message when you attempt to search, you may try resetting the extension and trying again. To do this, click the extension's icon in the top-right toolbar, then click "reset extension access." When you search again, you will have log back into your Google account, and hopefully the extension will work again after that.

However, some schools/organizations have settings that do not allow my extension to work, so this extension may not function for everyone, sorry!

-------------------------------------------------------------------------------------------------------------

This simple extension adds a search bar to your Google Classroom pages. It searches through every assignment and announcement ever posted to stream, so you can spend less time scrolling, and more time getting your work done.

Matching results are displayed in order of relevance right at the top of the stream, and as soon as you're done, you can reset and search again. Don't remember the exact phrasing used in the assignment you're looking for? Don't worry, since the extension implements a powerful fuzzy search engine that will any results related to what you entered.

The extension is also more powerful than simply searching the text on the page (through CMD/CTRL + F,) since it can locate assignments and announcements that the page has not yet loaded.

Classroom is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.

Search icon logo courtesy of Icons8 (icons8.com).                    

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

Tên Search Bar for Classroom Search Bar for Classroom
ID dmlfplbdckbemkkhkojekbagnpldghnc
URL Chính Thức https://chrome.google.com/webstore/detail/search-bar-for-classroom/dmlfplbdckbemkkhkojekbagnpldghnc
Mô tả A search bar for the Google Classroom assignments stream
Kích Thước Tệp 261 KB
Số Lần Cài Đặt 1,805
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2021-09-24
Ngày Phát Hành 2020-06-13
Đánh Giá 2.80/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Micah Cantor
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://micahcantor.github.io/SearchBarForClassroom/
URL Trang Chính Sách Bảo Mật https://github.com/micahcantor/ClassroomSearchbar/blob/master/Privacy_Policy.md
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Search Bar for Classroom",
    "version": "0.3.0",
    "description": "A search bar for the Google Classroom assignments stream",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icons8-search-16.png",
        "48": "icons\/icons8-search-48.png",
        "128": "icons\/icons8-search-128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "identity",
        "https:\/\/classroom.googleapis.com\/*",
        "https:\/\/search-bar-for-classroom.uk.r.appspot.com\/*"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/classroom.google.com\/*"
            ],
            "js": [
                "lib\/fuse.js",
                "lib\/url-pattern.js",
                "js\/start.js"
            ]
        }
    ],
    "oauth2": {
        "client_id": "809411372636-isaj4trbcg56tnmdevf3qhv1vk57kttb.apps.googleusercontent.com",
        "scopes": [
            "openid",
            "email",
            "profile",
            "https:\/\/www.googleapis.com\/auth\/classroom.courses.readonly",
            "https:\/\/www.googleapis.com\/auth\/classroom.coursework.me",
            "https:\/\/www.googleapis.com\/auth\/classroom.announcements.readonly",
            "https:\/\/www.googleapis.com\/auth\/classroom.coursework.students"
        ]
    },
    "web_accessible_resources": [
        "resources\/*"
    ]
}