Memex

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

What is Memex?

Memex is a Chrome extension developed by https://memex.garden, and its main feature is "Search, annotate and organize what you've read online.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Memex Extension CRX File

Download Memex extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Memex Memex
ID abkfbakhjpmblaafnpgjppbmioombali
Official URL https://chromewebstore.google.com/detail/memex/abkfbakhjpmblaafnpgjppbmioombali
Description Search, annotate and organize what you've read online.
File Size 8.26 MB
Installation Count 10,000
Current Version 3.14.4
Last Updated 2024-03-07
Publish Date 2020-07-01
Rating 3.97/5 Total 97 Ratings
Developer https://memex.garden
Email [email protected]
Payment Type free
Extension Website https://memex.garden
Help Page URL https://community.memex.garden
Privacy Policy Page URL https://links.memex.garden/privacy
Supported Languages 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
}