Gmail Row Highlighter

This extension is highlighting gmail rows with keyboard shortcuts.

Gmail Row Highlighter란 무엇입니까?

Gmail Row Highlighter은(는) xstefank122에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension is highlighting gmail rows with keyboard shortcuts."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Gmail Row Highlighter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension is highlighting gmail rows with keyboard shortcuts.
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.

This is an updated version of the extension  https://chrome.google.com/webstore/detail/gmail-row-highlighter/lcodjgpoghoileccehfoiiheicffmmia to which the author lost access                    

확장 프로그램 기본 정보

이름 Gmail Row Highlighter Gmail Row Highlighter
ID jonpcogoghigmfecjagaeehogbioaell
공식 URL https://chrome.google.com/webstore/detail/gmail-row-highlighter/jonpcogoghigmfecjagaeehogbioaell
설명 This extension is highlighting gmail rows with keyboard shortcuts.
파일 크기 151 KB
설치 횟수 30
현재 버전 1.2.3
최근 업데이트 2019-01-05
출시 날짜 2019-01-05
개발자 xstefank122
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/xstefank/gmail-row-highlight
도움말 페이지 URL https://github.com/xstefank/gmail-row-highlight/issues
지원되는 언어 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.3",
    "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 'self' 'unsafe-eval' 'sha512-ntVpZa8HMJ0Z3kzI7F7KkG5rI+9Hbh1ToZUtc9FyRioi5RAqwsInE7AjBinDvQ6SDF7DuMpZb44uhLZUYVGUBg==' 'sha512-U6P\/RClAL500os+uHYUu8EOBRrKj0h2dbsFU\/5U6+BfAccWV0tGsw\/SMSZvL\/DuuVn0H4Ym3FKYVjFYK+abUbw=='; 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
    }
}