Rating Tracker
Automatically tracks work hours completed by Lionbridge raters.
Rating Tracker là gì?
Rating Tracker là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Automatically tracks work hours completed by Lionbridge raters.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Rating Tracker
Tải xuống các tệp mở rộng Rating Tracker 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
This extension is intended to help Lionbridge raters with their time tracking. Its intention is simple: automate the tedious time tracking. The extension is highly configurable to suit a variety of users' needs.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Rating Tracker |
ID | ihconlfmhfghgbnibfcgkdpaodepllac |
URL Chính Thức | https://chromewebstore.google.com/detail/rating-tracker/ihconlfmhfghgbnibfcgkdpaodepllac |
Mô tả | Automatically tracks work hours completed by Lionbridge raters. |
Kích Thước Tệp | 3.3 MB |
Số Lần Cài Đặt | 51 |
Phiên Bản Hiện Tại | 1.1.0 |
Cập Nhật Lần Cuối | 2020-05-05 |
Ngày Phát Hành | 2020-05-05 |
Nhà Phát Triển | Unknown |
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", "name": "Rating Tracker", "version": "1.1.0", "description": "Automatically tracks work hours completed by Lionbridge raters.", "permissions": [ "storage", "notifications" ], "web_accessible_resources": [ "images\/*.png", "sounds\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/www.raterhub.com\/evaluation\/rater*" ], "exclude_matches": [ "https:\/\/www.raterhub.com\/evaluation\/rater\/settings", "https:\/\/www.raterhub.com\/evaluation\/rater\/task\/show*", "https:\/\/www.raterhub.com\/evaluation\/rater\/personalized_task_history\/tasks", "https:\/\/www.raterhub.com\/evaluation\/rater\/task\/recent_tasks" ], "js": [ "refreshContentScript.js" ] }, { "matches": [ "https:\/\/www.raterhub.com\/evaluation\/rater\/task\/show*" ], "exclude_matches": [ "https:\/\/www.raterhub.com\/evaluation\/rater\/settings", "https:\/\/www.raterhub.com\/evaluation\/rater\/personalized_task_history\/tasks", "https:\/\/www.raterhub.com\/evaluation\/rater\/task\/recent_tasks" ], "js": [ "taskContentScript.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/www.raterhub.com\/evaluation\/rater\/task\/show*" ], "exclude_matches": [ "https:\/\/www.raterhub.com\/evaluation\/rater\/settings", "https:\/\/www.raterhub.com\/evaluation\/rater\/personalized_task_history\/tasks", "https:\/\/www.raterhub.com\/evaluation\/rater\/task\/recent_tasks" ], "js": [ "htmlLoadedContentScript.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.raterhub.com\/evaluation\/rater\/task\/show*" ], "exclude_matches": [ "https:\/\/www.raterhub.com\/evaluation\/rater\/settings", "https:\/\/www.raterhub.com\/evaluation\/rater\/personalized_task_history\/tasks", "https:\/\/www.raterhub.com\/evaluation\/rater\/task\/recent_tasks" ], "js": [ "domLoadedContentScript.js" ], "run_at": "document_end" } ], "icons": { "128": "images\/icon128.png" }, "browser_action": { "default_popup": "popup.html" }, "manifest_version": 2 } |