Memex

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

Что такое Memex?

Memex - это расширение Chrome, разработанное https://memex.garden, и его основная функция - "Search, annotate and organize what you've read online.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Memex

Скачайте файлы расширений Memex в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Memex Memex
ID abkfbakhjpmblaafnpgjppbmioombali
Официальный URL https://chromewebstore.google.com/detail/memex/abkfbakhjpmblaafnpgjppbmioombali
Описание Search, annotate and organize what you've read online.
Размер файла 8.26 MB
Количество установок 10,000
Текущая Версия 3.14.4
Последнее Обновление 2024-03-07
Дата публикации 2020-07-01
Рейтинг 3.97/5 Всего 97 оценок
Разработчик https://memex.garden
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://memex.garden
URL страницы помощи https://community.memex.garden
URL страницы политики конфиденциальности https://links.memex.garden/privacy
Поддерживаемые языки 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
}