Mark As Read

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

Mark As Read là gì?

Mark As Read là một tiện ích mở rộng Chrome được phát triển bởi edoreld, và tính năng chính của nó là "Mark a page as read by clicking on the extension icon.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mark As Read

Tải xuống các tệp mở rộng Mark As Read dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Extra Features:
 - Backup & Restore links

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mark As Read Mark As Read
ID hiflhkmicfagennabmnfcnnlpkmidfjj
URL Chính Thức https://chromewebstore.google.com/detail/mark-as-read/hiflhkmicfagennabmnfcnnlpkmidfjj
Mô tả Mark a page as read by clicking on the extension icon.
Kích Thước Tệp 11.28 KB
Số Lần Cài Đặt 550
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2022-03-11
Ngày Phát Hành 2020-05-09
Đánh Giá 3.73/5 Tổng số 15 Đánh Giá
Nhà Phát Triển edoreld
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/edoreld/mark-as-read
URL Trang Trợ Giúp https://github.com/edoreld/mark-as-read/issues
Ngôn Ngữ Được Hỗ Trợ 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"
}