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ファイルをダウンロード

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
Eメール [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"
    ]
}