Gmail Row Highlighter

This extension is highlighting gmail rows with keyboard shortcuts.

Gmail Row Highlighterとは何ですか?

Gmail Row Highlighterはxstefankによって開発されたChromeの拡張機能で、その主な機能は「This extension is highlighting gmail rows with keyboard shortcuts.」です。

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

screenshot
screenshot

Gmail Row Highlighter拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This extension is highlighting current row in Gmail with keyboard controls.

User is allowed to change the colors for read, unread and selected emails directly and dynamically after opening the extension popup.

This project is opensource and it is hosted on Github: https://github.com/xstefank/gmail-row-highlight

Contributions and comments are welcome.                    

拡張機能の基本情報

名前 Gmail Row Highlighter Gmail Row Highlighter
ID lcodjgpoghoileccehfoiiheicffmmia
公式URL https://chrome.google.com/webstore/detail/gmail-row-highlighter/lcodjgpoghoileccehfoiiheicffmmia
説明 This extension is highlighting gmail rows with keyboard shortcuts.
ファイルサイズ 151 KB
インストール数 138
現在のバージョン 1.2.2
最終更新日 2017-02-19
公開日 2017-02-19
評価 4.00/5 合計 4 レビュー
開発者 xstefank
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gmail Row Highlighter",
    "description": "This extension is highlighting gmail rows with keyboard shortcuts.",
    "version": "1.2.2",
    "icons": {
        "16": "images\/gmail16.png",
        "48": "images\/gmail48.png",
        "128": "images\/gmail128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "mutation-summary.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'unsafe-eval' 'sha512-ntVpZa8HMJ0Z3kzI7F7KkG5rI+9Hbh1ToZUtc9FyRioi5RAqwsInE7AjBinDvQ6SDF7DuMpZb44uhLZUYVGUBg=='; object-src 'self'",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Gmail Row Highlighter",
        "default_icon": {
            "16": "images\/gmail16.png",
            "48": "images\/gmail48.png",
            "128": "images\/gmail128.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [],
    "web_accessible_resources": [],
    "homepage_url": "https:\/\/github.com\/xstefank\/gmail-row-highlight",
    "options_ui": {
        "page": "popup.html",
        "chrome_style": true
    }
}