RemNote Enforcer

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

RemNote Enforcer란 무엇입니까?

RemNote Enforcer은(는) allthingsremnote에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Presents you with RemNote cards when going on sites in your blacklist!"입니다.

확장 프로그램 스크린샷

screenshot

RemNote Enforcer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}