RemNote Enforcer

Presents you with RemNote cards when going on sites in your blacklist!

RemNote Enforcer là gì?

RemNote Enforcer là một tiện ích mở rộng Chrome được phát triển bởi allthingsremnote, và tính năng chính của nó là "Presents you with RemNote cards when going on sites in your blacklist!".

Ả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 RemNote Enforcer

Tải xuống các tệp mở rộng RemNote Enforcer 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

                        The RemNote Enforcer allows you to easily blacklist any site. Next time you go to that page, you will be presented with RemNote cards you must complete before being able to continue.


Instructions for use can be found at: https://www.remnote.io/a/how-to-use-the-the-remnote-enforcer/geYEAkp9PEMzmHQEt



UPDATE:
1. When dark mode is enabled on RemNote, the RemNote Enforcer switches to dark mode
2. Bug Fixes
3. Polish                    

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

Tên RemNote Enforcer RemNote Enforcer
ID mikeijnjgakkcdfhhobllnblmmonbnnp
URL Chính Thức https://chromewebstore.google.com/detail/remnote-enforcer/mikeijnjgakkcdfhhobllnblmmonbnnp
Mô tả Presents you with RemNote cards when going on sites in your blacklist!
Kích Thước Tệp 11.94 KB
Số Lần Cài Đặt 323
Phiên Bản Hiện Tại 1.00.04
Cập Nhật Lần Cuối 2020-12-20
Ngày Phát Hành 2020-07-23
Đánh Giá 2.91/5 Tổng số 11 Đánh Giá
Nhà Phát Triển allthingsremnote
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RemNote Enforcer",
    "description": "Presents you with RemNote cards when going on sites in your blacklist!",
    "version": "1.00.04",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "remnoteSheild.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.remnote.io\/*"
            ],
            "run_at": "document_end",
            "js": [
                "checkDark.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "haltPopup.html",
        "script\/haltPopup.js"
    ],
    "icons": {
        "16": "remnoteSheild.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ]
}