Matter

Save articles to your Matter account

Matter란 무엇입니까?

Matter은(는) https://getmatter.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save articles to your Matter account"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Matter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Matter: Save, read, listen, highlight

Finally, a better reading app. The internet is full of things you want to read – articles, newsletters, Twitter threads, PDFs. Matter brings them together in one place.

“Matter improves vastly on earlier read-later apps like Pocket and Instapaper, letting you easily access news and other stories whenever you get the time” –The Wall Street Journal (2022)

Save in 1-click:
- Save full articles if you’re within the paywall (eg. Bloomberg, NYT, WSJ)
- Rollup Twitter threads into a single article page
- Save PDFs and YouTube

3 ways to save:
 - Click the Matter button in the toolbar
 - Or right-click a link and “Save to Matter”
 - Or use the keyboard shortcut ‘Control + M’

Read across devices, including Kindle:
 - iPhone, iPad, Web
 - Send any article to Kindle in 2-taps
 - We don’t support Android yet, sorry. Coming in 2023!

Unified inbox for your subscriptions:
 - Sync your newsletters by connecting Gmail
 - Follow individual writers for their latest
 - Add any RSS feed

The most elegant reading experience:
 - Best-in-class article parsing
 - Gorgeous night mode
 - Human-like text-to-speech
 - Fluid highlighting

Export your knowledge:
 - Sync your highlights to Notion, Obsidian, Roam, Readwise, and others                    

확장 프로그램 기본 정보

이름 Matter Matter
ID knjbgabkeojmfdhindppcmhhfiembkeb
공식 URL https://chromewebstore.google.com/detail/matter/knjbgabkeojmfdhindppcmhhfiembkeb
설명 Save articles to your Matter account
파일 크기 4.83 MB
설치 횟수 24,342
현재 버전 4.5.0
최근 업데이트 2023-06-08
출시 날짜 2022-11-16
평점 4.19/5 총 26 개의 평점
개발자 https://getmatter.app
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://hq.getmatter.app/web-extension
개인정보 보호 정책 페이지 URL https://www.notion.so/Privacy-Policy-Dig-Wells-Inc-d251dca14d7b4f2baf4fd21c38600e76
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Matter",
    "version": "4.5.0",
    "description": "Save articles to your Matter account",
    "author": "Matter",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "contextMenus",
        "cookies",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "Save to Matter",
        "default_icon": {
            "16": "\/images\/matter-icon-16.png",
            "32": "\/images\/matter-icon-32.png",
            "48": "\/images\/matter-icon-48.png",
            "96": "\/images\/matter-icon-96.png",
            "128": "\/images\/matter-icon-128.png",
            "256": "\/images\/matter-icon-256.png"
        }
    },
    "background": {
        "scripts": [
            "\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/popup\/popup.js"
            ]
        }
    ],
    "commands": {
        "saveAndNote": {
            "suggested_key": {
                "default": "Alt+Shift+N",
                "mac": "MacCtrl+N"
            },
            "description": "Save and take a note"
        },
        "saveAndTag": {
            "suggested_key": {
                "default": "Alt+Shift+T",
                "mac": "MacCtrl+T"
            },
            "description": "Save and tag"
        },
        "save": {
            "suggested_key": {
                "default": "Alt+Shift+M",
                "mac": "MacCtrl+M"
            },
            "description": "Save page to your Matter account"
        },
        "reader": {
            "suggested_key": {
                "default": "Alt+Shift+R",
                "mac": "MacCtrl+R"
            },
            "description": "Open page in the Matter reader view"
        }
    },
    "icons": {
        "16": "\/images\/matter-icon-16.png",
        "32": "\/images\/matter-icon-32.png",
        "48": "\/images\/matter-icon-48.png",
        "96": "\/images\/matter-icon-96.png",
        "128": "\/images\/matter-icon-128.png",
        "256": "\/images\/matter-icon-256.png"
    },
    "web_accessible_resources": [
        "\/fonts\/*.woff2",
        "\/images\/*.png",
        "index.html",
        "popover.html",
        "modal.html",
        "next\/*"
    ]
}