BriskNote: New Tab Notes that Sync with Phone

Take Quick Notes on Any New Browser Tab and Sync them with your Phone

BriskNote: New Tab Notes that Sync with Phone란 무엇입니까?

BriskNote: New Tab Notes that Sync with Phone은(는) SysRestart에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take Quick Notes on Any New Browser Tab and Sync them with your Phone"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

BriskNote: New Tab Notes that Sync with Phone 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Make your life more productive with every new browser tab you open. Take quick notes, and access them on the BriskNote mobile app and vice versa. Perfect for taking notes while having conversations, jotting down spontaneous ideas, making lists, storing pieces of code or message drafts, and so on. BriskNote is the perfect middle ground between oversimplified sticky notes and complex desktop note-taking softwares. And the best part, it's absolutely free! It also has a dark mode.                    

확장 프로그램 기본 정보

이름 BriskNote: New Tab Notes that Sync with Phone BriskNote: New Tab Notes that Sync with Phone
ID gbdigbbnelhehnhlkhiepkpkedokgfog
공식 URL https://chromewebstore.google.com/detail/brisknote-new-tab-notes-t/gbdigbbnelhehnhlkhiepkpkedokgfog
설명 Take Quick Notes on Any New Browser Tab and Sync them with your Phone
파일 크기 651 KB
설치 횟수 265
현재 버전 0.2.1
최근 업데이트 2019-04-28
출시 날짜 2019-04-28
평점 3.67/5 총 3 개의 평점
개발자 SysRestart
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://brisknote.com
개인정보 보호 정책 페이지 URL https://sysrestart.com/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BriskNote: New Tab Notes that Sync with Phone",
    "description": "Take Quick Notes on Any New Browser Tab and Sync them with your Phone",
    "version": "0.2.1",
    "version_name": "0.2.1",
    "icons": {
        "128": "media\/BriskNote_Icon_128x128.png",
        "48": "media\/BriskNote_Icon_48x48.png",
        "16": "media\/BriskNote_Icon_16x16.png"
    },
    "browser_action": {
        "default_icon": "media\/BriskNote_Icon_16x16.png"
    },
    "chrome_url_overrides": {
        "newtab": "notes.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "identity"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:5005\/auth\/*",
                "http:\/\/localhost:5006\/auth\/*",
                "http:\/\/brisknote.com\/auth\/*",
                "https:\/\/brisknote.com\/auth\/*",
                "https:\/\/api.brisknote.com\/auth\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}