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
}