WebStickies

Sticky notes for the Internet.

WebStickies क्या है?

WebStickies https://lawrencehook.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sticky notes for the Internet."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में WebStickies एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Take notes on websites.

Sticky notes are saved locally and reappear on subsequent visits.

Features:
    - Intuitive interface for creating and modifying notes.
    - Attach notes to specific websites or match multiple URLs with regex.
    - Sync notes across all devices.
    - Organize notes with tags and folders.
    - Lightweight and fast.
    - Privacy focused. This extension does not share data and respects users' privacy.

Commands:
    - Alt+Shift+N — New sticky note
    - Alt+Shift+M — Toggle minimization for all notes on the page
    - Alt+Shift+O — Open the browser action menu 
    - Alt+Shift+L — Open the options page

Permissions:
    - Store unlimited amount of client-side data — Required to save sticky note data locally.
    - Access your data for all websites — Required to load sticky notes on any page.

Attribution:
Screenshot taken from https://en.wikipedia.org/wiki/Note-taking

Support:
Leave a review! Give feedback with email: lawrencehook  gmail                    

एक्सटेंशन की मूल जानकारी

नाम WebStickies WebStickies
ID bieffgacahgffgjoehgamaomcpcelmfb
आधिकारिक URL https://chromewebstore.google.com/detail/webstickies/bieffgacahgffgjoehgamaomcpcelmfb
विवरण Sticky notes for the Internet.
फ़ाइल का आकार 442 KB
स्थापना संख्या 1,354
वर्तमान संस्करण 5.5.38
अंतिम अपडेट 2023-11-21
प्रकाशन तिथि 2021-12-09
रेटिंग 3.88/5 कुल 8 रेटिंग्स
डेवलपर https://lawrencehook.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://lawrencehook.com/ws/
सहायता पृष्ठ URL https://docs.google.com/forms/d/18gG4EzemSNyxBvm-R2mDR_bLBZpXPhNnMWbCJJkWB4k
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WebStickies",
    "description": "Sticky notes for the Internet.",
    "version": "5.5.38",
    "icons": {
        "16": "icons\/logo\/icon-16.png",
        "32": "icons\/logo\/icon-32.png",
        "64": "icons\/logo\/icon-64.png",
        "128": "icons\/logo\/icon-128.png",
        "256": "icons\/logo\/icon-256.png",
        "512": "icons\/logo\/icon-512.png"
    },
    "background": {
        "scripts": [
            "shared\/constants.js",
            "shared\/browser.js",
            "shared\/logging.js",
            "shared\/http.js",
            "shared\/utils.js",
            "shared\/classes\/LocalStorage.js",
            "background\/utils.js",
            "background\/init.js",
            "background\/migrations.js",
            "background\/main.js",
            "background\/commands.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "shared\/constants.js",
                "shared\/browser.js",
                "shared\/logging.js",
                "shared\/utils.js",
                "shared\/classes\/LocalStorage.js",
                "shared\/classes\/Autocomplete.js",
                "shared\/classes\/ConfirmationModal.js",
                "shared\/classes\/EditModal.js",
                "contentScript\/utils.js",
                "contentScript\/constants.js",
                "contentScript\/main.js"
            ],
            "css": [
                "contentScript\/general.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/logo\/icon-16.png",
            "32": "icons\/logo\/icon-32.png",
            "64": "icons\/logo\/icon-64.png",
            "128": "icons\/logo\/icon-128.png",
            "256": "icons\/logo\/icon-256.png",
            "512": "icons\/logo\/icon-512.png"
        },
        "default_popup": "list-view\/list-view.html?page=browserAction",
        "default_title": "WebStickies"
    },
    "options_ui": {
        "page": "list-view\/list-view.html?page=options",
        "open_in_tab": true
    },
    "commands": {
        "new-sticky": {
            "suggested_key": {
                "default": "Alt+Shift+N"
            },
            "description": "Create a new sticky note on the page."
        },
        "toggle-min": {
            "suggested_key": {
                "default": "Alt+Shift+M"
            },
            "description": "Toggles minimization for all the notes on the page."
        },
        "open-options": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "Open the options page."
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+O"
            },
            "description": "Open the browser action."
        }
    },
    "web_accessible_resources": [
        "\/contentScript\/main.css",
        "\/shared\/css\/globals.css",
        "\/shared\/css\/autocomplete.css",
        "\/shared\/css\/editModal.css"
    ],
    "permissions": [
        "storage",
        "unlimitedStorage",
        "*:\/\/*\/*",
        "contextMenus"
    ]
}