Memex

Search, annotate and organize what you've read online.

Was ist Memex?

Memex ist eine Chrome-Erweiterung, die von https://memex.garden entwickelt wurde, und ihr Hauptmerkmal ist "Search, annotate and organize what you've read online.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Memex-Erweiterungs-CRX-Datei herunterladen

Laden Sie Memex-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

                        Deep Reading for the web. As individuals, teams and communities. 

Curate, annotate and discuss the most important websites, PDFs and YouTube videos.

FEATURES:
=========
🔍 Full-text search pages and PDFs you annotated or bookmarked. 
📝 Highlight and Annotate Websites & PDFs
🗄 Flexible organisation: Organise into Spaces + tab manager
🌎 Share, collaborate on and discuss Spaces of pages and notes with others.
🔗 Link to highlights and annotations  
📱 Across devices: Save, View & organise your knowledge on all of your devices, phones and tablets.
⚡️ Quick onboarding.Import from every major bookmarking service with your folder structure.
😎 Offline-first. All data is stored on your device.
⛅ Backup your data to any of your favourite cloud providers.

View our privacy policy: https://links.memex.garden/privacy


HOW TO USE
=============
🔍 Search: Type in 'm' followed by pressing the 'space' bar or tab in the address bar. 
📝 Annotate: Highlight any piece of text and right click
🗄Organise: Move with the mouse to the right side of the screen, or click on the little 'brain' icon in the extension bar


FEEDBACK and TROUBLESHOOTING
============================

To leave bug reports and feature requests: community.memex.social
Support email: [email protected]
Chat with the team: memex.garden > the chat bubble in the bottom right corner

If Memex causes issues, there is this trick as old as computer service people are around:
Have you tried restarting the extension? 🤓
You can do so via chrome://extensions.

If a problem persists, keep the extension deactivated and drop by in our help section (above). 
When deactivated then does not need RAM or CPU.                    

Grundlegende Informationen zur Erweiterung

Name Memex Memex
ID abkfbakhjpmblaafnpgjppbmioombali
Offizielle URL https://chromewebstore.google.com/detail/memex/abkfbakhjpmblaafnpgjppbmioombali
Beschreibung Search, annotate and organize what you've read online.
Dateigröße 8.26 MB
Installationsanzahl 10,000
Aktuelle Version 3.14.4
Letztes Update 2024-03-07
Veröffentlichungsdatum 2020-07-01
Bewertung 3.97/5 Insgesamt 97 Bewertungen
Entwickler https://memex.garden
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://memex.garden
Hilfeseite URL https://community.memex.garden
URL der Datenschutzrichtlinien-Seite https://links.memex.garden/privacy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Memex",
    "short_name": "Memex",
    "version": "3.14.4",
    "description": "Search, annotate and organize what you've read online.",
    "background": {
        "scripts": [
            "lib\/browser-polyfill.js",
            "background.js"
        ]
    },
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:3000\/*",
            "https:\/\/staging.memex.social\/*",
            "https:\/\/memex.social\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/browser-polyfill.js",
                "content_script.js"
            ],
            "css": [],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_title": "Memex",
        "default_popup": ".\/popup.html"
    },
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "icons": {
        "16": ".\/img\/browserIcons\/logo-16.png",
        "48": ".\/img\/browserIcons\/logo-48.png",
        "128": ".\/img\/browserIcons\/logo-128.png"
    },
    "permissions": [
        "",
        "alarms",
        "bookmarks",
        "contextMenus",
        "tabs",
        "webNavigation",
        "notifications",
        "unlimitedStorage",
        "storage",
        "clipboardWrite"
    ],
    "web_accessible_resources": [
        "\/lib\/pdf.worker.min.js",
        "\/img\/*",
        "\/content_script*.css",
        "\/fonts\/*",
        "content_script_*.js",
        "sidebar.html",
        "file:\/*",
        "chrome-extension:\/*",
        "blob:*",
        "data:*",
        "filesystem:\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.youtube.com https:\/\/apis.google.com; object-src 'self'; connect-src http: https: data: blob: wss: file:",
    "omnibox": {
        "keyword": "m"
    },
    "options_ui": {
        "page": ".\/options.html#\/settings",
        "open_in_tab": true
    },
    "manifest_version": 2
}