Just Remind Chrome Extension

Export your kindle highlights to justremind.app

Vad är Just Remind Chrome Extension?

Just Remind Chrome Extension är en Chrome-tillägg utvecklad av just.remind.extension, och dess huvudfunktion är "Export your kindle highlights to justremind.app".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Just Remind Chrome Extension-förlängningens CRX-fil

Ladda ner Just Remind Chrome Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Never forget about a book again with Just Remind!

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

Grundläggande Information om Tillägg

Namn Just Remind Chrome Extension Just Remind Chrome Extension
ID iidldfielonfgiabbjjkbigjjclcpefa
Officiell webbadress https://chromewebstore.google.com/detail/just-remind-chrome-extens/iidldfielonfgiabbjjkbigjjclcpefa
Beskrivning Export your kindle highlights to justremind.app
Filstorlek 559 KB
Antal Installationer 47
Aktuell Version 0.9.15
Senast Uppdaterad 2023-11-04
Publiceringsdatum 2022-05-23
Utvecklare just.remind.extension
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://justremind.app/
URL till Sekretesspolicy Sidan https://justremind.app/privacy_policy
Stödda Språk 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\/*"
    ]
}