Mark As Read

Mark a page as read by clicking on the extension icon.

Mark As Read란 무엇입니까?

Mark As Read은(는) edoreld에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Mark a page as read by clicking on the extension icon."입니다.

확장 프로그램 스크린샷

screenshot

Mark As Read 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Extra Features:
 - Backup & Restore links

To activate these extra features, right click on the extension icon and click on Options.                    

확장 프로그램 기본 정보

이름 Mark As Read Mark As Read
ID hiflhkmicfagennabmnfcnnlpkmidfjj
공식 URL https://chromewebstore.google.com/detail/mark-as-read/hiflhkmicfagennabmnfcnnlpkmidfjj
설명 Mark a page as read by clicking on the extension icon.
파일 크기 11.28 KB
설치 횟수 550
현재 버전 1.0.0
최근 업데이트 2022-03-11
출시 날짜 2020-05-09
평점 3.73/5 총 15 개의 평점
개발자 edoreld
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/edoreld/mark-as-read
도움말 페이지 URL https://github.com/edoreld/mark-as-read/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mark As Read",
    "version": "1.0.0",
    "description": "Mark a page as read by clicking on the extension icon. ",
    "icons": {
        "128": "icon_128.png",
        "48": "icon_48.png",
        "16": "icon_16.png"
    },
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "mark_page": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z"
            },
            "description": "Mark\/unmark the current page"
        }
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "downloads",
        "unlimitedStorage"
    ],
    "options_page": "options.html"
}