Notoy

Saves a link to the current active tab with its title, keywords and a long and short description as markdown, Org-Mode or plain text

Notoy란 무엇입니까?

Notoy은(는) Release-Candidate에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Saves a link to the current active tab with its title, keywords and a long and short description as markdown, Org-Mode or plain text"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Notoy saves a note of the current website including it's URL, some keywords and a short or long description to disk. The note can be formatted as Markdown (for programs like Obsidian, Joplin or Zettlr), as Org-Mode to use with Emacs' Org-Mode or as plain text.                    

확장 프로그램 기본 정보

이름 Notoy Notoy
ID ejmcdafpeijhmmmfebmdpcmgaaoaminc
공식 URL https://chromewebstore.google.com/detail/notoy/ejmcdafpeijhmmmfebmdpcmgaaoaminc
설명 Saves a link to the current active tab with its title, keywords and a long and short description as markdown, Org-Mode or plain text
파일 크기 140 KB
설치 횟수 50
현재 버전 1.0.2
최근 업데이트 2021-10-12
출시 날짜 2021-10-07
개발자 Release-Candidate
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://notoy-browserextensions.readthedocs.io/en/stable/
도움말 페이지 URL https://github.com/Release-Candidate/Notoy-BrowserExtensions
지원되는 언어 de,en,sk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.0.2",
    "default_locale": "en",
    "manifest_version": 3,
    "author": "Roland Csaszar",
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "tabs",
        "scripting",
        "downloads"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "icons": {
        "16": ".\/images\/icon_transp_16.png",
        "32": ".\/images\/icon_transp_32.png",
        "48": ".\/images\/icon_transp_48.png",
        "128": ".\/images\/icon_transp_128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/images\/icon_transp_16.png",
            "32": ".\/images\/icon_transp_32.png",
            "48": ".\/images\/icon_transp_48.png",
            "128": ".\/images\/icon_transp_128.png"
        }
    }
}