Georgia Tech Services Auto Login
This extension logs you into gatech services automatically
Georgia Tech Services Auto Login là gì?
Georgia Tech Services Auto Login là một tiện ích mở rộng Chrome được phát triển bởi thomas4gshields, và tính năng chính của nó là "This extension logs you into gatech services automatically".
Tải xuống tệp CRX của tiện ích mở rộng Georgia Tech Services Auto Login
Tải xuống các tệp mở rộng Georgia Tech Services Auto Login 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
Automatically logs you when you're on a login.gatech.edu page.
Useful for students. Not really anyone else. I hate writing descriptions. I hate people who write meta-descriptions and talk about hating writing descriptions. Thông Tin Cơ Bản về Tiện Ích Mở Rộng
| Tên | |
| ID | ceakccgdkeealohoogkkmonkfijaegoi |
| URL Chính Thức | https://chrome.google.com/webstore/detail/georgia-tech-services-aut/ceakccgdkeealohoogkkmonkfijaegoi |
| Mô tả | This extension logs you into gatech services automatically |
| Kích Thước Tệp | 57.83 KB |
| Số Lần Cài Đặt | 42 |
| Phiên Bản Hiện Tại | 0.0.1 |
| Cập Nhật Lần Cuối | 2013-10-14 |
| Ngày Phát Hành | 2013-10-14 |
| Đánh Giá | 4.67/5 Tổng số 3 Đánh Giá |
| Nhà Phát Triển | thomas4gshields |
| Loại Thanh Toán | free |
| Ngôn Ngữ Được Hỗ Trợ | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Georgia Tech Services Auto Login",
"description": "This extension logs you into gatech services automatically",
"version": "0.0.1",
"options_page": "options.html",
"icons": {
"48": "icon48.png"
},
"permissions": [],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https:\/\/login.gatech.edu\/*"
],
"js": [
"login.js"
]
}
],
"browser_action": {
"default_icon": "icon.png",
"default_title": "gatech autologin",
"default_popup": "options.html"
}
} | |