Memex

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

Cos'è Memex?

Memex è un'estensione di Chrome sviluppata da https://memex.garden, e la sua funzione principale è "Search, annotate and organize what you've read online.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Memex

Scarica i file di estensione Memex in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Memex Memex
ID abkfbakhjpmblaafnpgjppbmioombali
URL Ufficiale https://chromewebstore.google.com/detail/memex/abkfbakhjpmblaafnpgjppbmioombali
Descrizione Search, annotate and organize what you've read online.
Dimensione del File 8.26 MB
Conteggio Installazioni 10,000
Versione Corrente 3.14.4
Ultimo Aggiornamento 2024-03-07
Data di Pubblicazione 2020-07-01
Valutazione 3.97/5 Totale 97 Valutazioni
Sviluppatore https://memex.garden
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://memex.garden
URL della Pagina di Aiuto https://community.memex.garden
URL della Pagina della Politica sulla Privacy https://links.memex.garden/privacy
Lingue Supportate 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
}