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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}