Rating Tracker

Automatically tracks work hours completed by Lionbridge raters.

Rating Trackerとは何ですか?

Rating TrackerはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Automatically tracks work hours completed by Lionbridge raters.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Rating Tracker拡張機能のCRXファイルをダウンロード

Rating Tracker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Rating Tracker Rating Tracker
ID ihconlfmhfghgbnibfcgkdpaodepllac
公式URL https://chromewebstore.google.com/detail/rating-tracker/ihconlfmhfghgbnibfcgkdpaodepllac
説明 Automatically tracks work hours completed by Lionbridge raters.
ファイルサイズ 3.3 MB
インストール数 51
現在のバージョン 1.1.0
最終更新日 2020-05-05
公開日 2020-05-05
開発者 Unknown
支払い方法 free
対応言語 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
}