TaggingNotes

Adds notes managed by tagging without hierarchized tree to sidebar.

TaggingNotes란 무엇입니까?

TaggingNotes은(는) https://far.whochan.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds notes managed by tagging without hierarchized tree to sidebar."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension adds notes managed by tagging without Hierarchized tree to sidebar.

= Features

* Manages data by tagging
* Shown in sidebar
* Imports notes from Vivaldi
* Imports notes from Presto Opera
* Backup and Restore data
* Copy to notes by context menu of page
* Add tag by context menu of page

= Usage

# Write anything to textarea of panel or copy to notes by context menu on selected text of page.
# Add tags by input to bottom of textarea or context menu on selected text of page.
# Click tags on top of panel to search notes, click again it to unchecked.
# If you don't check any tags, then all notes are shown.
# Click any note shown to edit it.
# Click add here to create a new note tagged by selected tags on top of panel.
# You can delete a note/tag by context menu or delete key on it.
# Deleted note is tagged as "Trash", and delete it again, then it will be deleted completely.                    

확장 프로그램 기본 정보

이름 TaggingNotes TaggingNotes
ID ibicnkbgpkdjdpbnaighfkkdbghbolaa
공식 URL https://chromewebstore.google.com/detail/taggingnotes/ibicnkbgpkdjdpbnaighfkkdbghbolaa
설명 Adds notes managed by tagging without hierarchized tree to sidebar.
파일 크기 164 KB
설치 횟수 56
현재 버전 2.0 MV3
최근 업데이트 2022-02-28
출시 날짜 2017-12-24
개발자 https://far.whochan.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://far.whochan.com/wlog.cgi/TaggingNotes
개인정보 보호 정책 페이지 URL http://far.whochan.com/wlog.cgi/Privacy%20Policy
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "TaggingNotes",
    "short_name": "TGN",
    "version": "2.0.1.137",
    "version_name": "2.0 MV3",
    "default_locale": "en",
    "description": "__MSG_DESCRIPTION__",
    "homepage_url": "http:\/\/far.whochan.com\/",
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon96.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_title": "TaggingNotes",
        "default_icon": "buttons\/sidebar.png"
    },
    "sidebar_action": {
        "default_panel": "sidebar.html",
        "default_title": "TaggingNotes",
        "default_icon": "buttons\/sidebar.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": false,
            "matches": [
                ""
            ],
            "js": [
                "lib\/WHO.extension.client.js",
                "includes\/usoCopyFromNotes.js"
            ]
        }
    ]
}