RemNote Enforcer

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

ما هو RemNote Enforcer؟

RemNote Enforcer هو إضافة Chrome تم تطويرها بواسطة allthingsremnote، والميزة الرئيسية لها هي "Presents you with RemNote cards when going on sites in your blacklist!".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة RemNote Enforcer

قم بتنزيل ملفات الامتداد RemNote Enforcer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم RemNote Enforcer RemNote Enforcer
ID mikeijnjgakkcdfhhobllnblmmonbnnp
عنوان URL الرسمي https://chromewebstore.google.com/detail/remnote-enforcer/mikeijnjgakkcdfhhobllnblmmonbnnp
الوصف Presents you with RemNote cards when going on sites in your blacklist!
حجم الملف 11.94 KB
عدد التثبيتات 323
النسخة الحالية 1.00.04
آخر تحديث 2020-12-20
تاريخ النشر 2020-07-23
تقييم 2.91/5 مجموع تقييمات 11
المطور allthingsremnote
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
    ]
}