CRN Tool

Quickly copy your CRNs to register for classes at Georgia Southern University

CRN Tool là gì?

CRN Tool là một tiện ích mở rộng Chrome được phát triển bởi http://kobitate.com, và tính năng chính của nó là "Quickly copy your CRNs to register for classes at Georgia Southern University".

Ả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 CRN Tool

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

                        Source code:
http://github.com/therealgitcub/crn-tool

Changelog
---------------------
1.1.5 -- April 15th, 2016
   • Fixed a bug where it was difficult to launch CRN Tool from within WINGS

1.1.4 -- April 15th, 2016
   • Fixed a bug where the settings page would launch randomly

1.1.3 -- March 16th, 2016
   • Made CRNs easier to manage
   • Added a status bar w/ a close button to the window
   • Added a settings link to the window
   • Made it clearer that a CRN was copied to the clipboard
   • Clarified some wording

1.1.2 -- March 12th, 2016
   • Fixed buggy drag animation
   • Moved launch button from address bar to WINGS

1.1.1 -- March 12th, 2016
   •  Fixed an incorrect color
   •  Updated course search screenshot on Install page

1.1.0 -- March 11th, 2016
   •  Added ability to add CRNs from GS Course Search
   •  Added install page to add CRNs and introduce CRN Tool

1.0 -- March 9th, 2016
   •  Released                    

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

Tên CRN Tool CRN Tool
ID ohlknoaachkmihafcfnocmdjhafikmmo
URL Chính Thức https://chrome.google.com/webstore/detail/crn-tool/ohlknoaachkmihafcfnocmdjhafikmmo
Mô tả Quickly copy your CRNs to register for classes at Georgia Southern University
Kích Thước Tệp 602 KB
Số Lần Cài Đặt 113
Phiên Bản Hiện Tại 1.1.5
Cập Nhật Lần Cuối 2016-04-15
Ngày Phát Hành 2016-04-15
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển http://kobitate.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CRN Tool",
    "description": "Quickly copy your CRNs to register for classes at Georgia Southern University",
    "version": "1.1.5",
    "options_page": "install\/index.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/wings.georgiasouthern.edu\/*"
            ],
            "js": [
                "lib\/jquery-2.1.4.min.js",
                "lib\/jquery-ui.min.js",
                "lib\/clipboard.min.js",
                "main\/main.js"
            ],
            "css": [
                "lib\/material-design-iconic-font.css",
                "main\/main.css"
            ]
        },
        {
            "matches": [
                "https:\/\/my.georgiasouthern.edu\/courses\/*"
            ],
            "js": [
                "lib\/jquery-2.1.4.min.js",
                "course-search\/course-search.js"
            ],
            "css": [
                "course-search\/course-search.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "main\/background.js"
        ]
    },
    "permissions": [
        "https:\/\/wings.georgiasouthern.edu\/*",
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        "lib\/fonts\/*",
        "main\/main.html",
        "icons\/*",
        "install\/index.html"
    ],
    "icons": {
        "128": "icons\/icon128.png"
    }
}