TaggingNotes

Adds notes managed by tagging without hierarchized tree to sidebar.

TaggingNotes क्या है?

TaggingNotes https://far.whochan.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds notes managed by tagging without hierarchized tree to sidebar."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में TaggingNotes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}