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ファイルをダウンロード

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

拡張機能の使用方法

                        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
Eメール [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"
}