CollegeConfetti

Admission Letter Stress Be Gone!

CollegeConfetti là gì?

CollegeConfetti là một tiện ích mở rộng Chrome được phát triển bởi https://bananiumlabs.com, và tính năng chính của nó là "Admission Letter Stress Be Gone!".

Ả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 CollegeConfetti

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

                        Have you ever been frustrated with having to nervously read through your admission letter just to find out you were rejected? How about the lack of gratification when no confetti appears?! Worry no more! Introducing... ADMISSION_CONFETTI.crx! This chrome extension will scan any webpages you visit ending in .edu for the word 'Congratuations' even if they are in an iframe. If it does detect any traces of flour-based commodity, such as bread, you will be introduced to an infinite flow of confetti. What can get better than that?!

Changelog:
1.0.1 - Hide canvas when no confetti is available
1.0.2 - FULL SCREEN CONFETTI!!!

Full source code is available here: https://github.com/EnumC/CollegeConfetti                    

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

Tên CollegeConfetti CollegeConfetti
ID jdhoaebmpnhhpgokednpeoaohmimflee
URL Chính Thức https://chromewebstore.google.com/detail/collegeconfetti/jdhoaebmpnhhpgokednpeoaohmimflee
Mô tả Admission Letter Stress Be Gone!
Kích Thước Tệp 42.94 KB
Số Lần Cài Đặt 159
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2021-02-25
Ngày Phát Hành 2019-03-27
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://bananiumlabs.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://enumc.com
URL Trang Trợ Giúp https://enumc.com
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CollegeConfetti",
    "description": "Admission Letter Stress Be Gone!",
    "version": "1.0.2",
    "icons": {
        "128": "128.png",
        "48": "48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.edu\/*",
                "https:\/\/*.edu\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "http:\/\/*.edu\/*",
        "https:\/\/*.edu\/*"
    ],
    "author": "Eric Qian",
    "homepage_url": "https:\/\/bananiumlabs.com",
    "manifest_version": 2
}