Just Remind Chrome Extension

Export your kindle highlights to justremind.app

Was ist Just Remind Chrome Extension?

Just Remind Chrome Extension ist eine Chrome-Erweiterung, die von just.remind.extension entwickelt wurde, und ihr Hauptmerkmal ist "Export your kindle highlights to justremind.app".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Just Remind Chrome Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Just Remind Chrome Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Never forget about a book again with Just Remind!

The extension allows you to import your Kindle highlights to the Just Remind web app.                    

Grundlegende Informationen zur Erweiterung

Name Just Remind Chrome Extension Just Remind Chrome Extension
ID iidldfielonfgiabbjjkbigjjclcpefa
Offizielle URL https://chromewebstore.google.com/detail/just-remind-chrome-extens/iidldfielonfgiabbjjkbigjjclcpefa
Beschreibung Export your kindle highlights to justremind.app
Dateigröße 559 KB
Installationsanzahl 47
Aktuelle Version 0.9.15
Letztes Update 2023-11-04
Veröffentlichungsdatum 2022-05-23
Entwickler just.remind.extension
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://justremind.app/
URL der Datenschutzrichtlinien-Seite https://justremind.app/privacy_policy
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Just Remind Chrome Extension",
    "version": "0.9.15",
    "description": "Export your kindle highlights to justremind.app",
    "manifest_version": 3,
    "author": "Loic Boset",
    "action": {
        "default_popup": "index.html",
        "default_title": "Just Remind Chrome Extension",
        "default_icon": {
            "16": ".\/images\/logo_16.png",
            "32": ".\/images\/logo_32.png",
            "48": ".\/images\/logo_48.png",
            "128": ".\/images\/logo_128.png"
        }
    },
    "icons": {
        "16": ".\/images\/logo_16.png",
        "32": ".\/images\/logo_32.png",
        "48": ".\/images\/logo_48.png",
        "128": ".\/images\/logo_128.png"
    },
    "background": {
        "service_worker": ".\/static\/js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/static\/js\/content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "storage",
        "alarms",
        "offscreen",
        "contextMenus",
        "activeTab"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self'"
    },
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:3000\/*",
            "https:\/\/justremind.app\/*",
            "http:\/\/localhost:3000\/api\/add_book",
            "https:\/\/justremind.app\/api\/add_book"
        ]
    },
    "host_permissions": [
        "http:\/\/localhost:3000\/*",
        "https:\/\/justremind.app\/*"
    ]
}