Sticky Notes

Produces a sticky note that sticks to the tab you are on. The sticky note scrolls with you down or up the page. To get one of these…

Sticky Notes क्या है?

Sticky Notes Noah Baxley द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Produces a sticky note that sticks to the tab you are on. The sticky note scrolls with you down or up the page. To get one of these…"।

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

screenshot

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

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

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

                        Produces a sticky note that sticks to the tab you are on.
The sticky note scrolls with you down or up the page.
To get one of these sticky notes press Alt n.
Currently trying to make it so that once you make a note it will appear on other tabs as well as your original tab.

This is a good item to have if you want to take notes on a webpage and then use those notes somewhere else in your browser

In the process of making things better; if customers have suggestions on how to make this better, please describe.

I will have better screenshots in next version.                    

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

नाम Sticky Notes Sticky Notes
ID gepfdgjedadbefbfnhjdhpbdannbmcnf
आधिकारिक URL https://chromewebstore.google.com/detail/sticky-notes/gepfdgjedadbefbfnhjdhpbdannbmcnf
विवरण Produces a sticky note that sticks to the tab you are on. The sticky note scrolls with you down or up the page. To get one of these…
फ़ाइल का आकार 330 KB
स्थापना संख्या 86
वर्तमान संस्करण 1.1.2
अंतिम अपडेट 2018-10-23
प्रकाशन तिथि 2018-10-22
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर Noah Baxley
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "external\/jquery\/jquery.js",
                "jquery-ui.min.js",
                "script.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "manifest_version": 2,
    "name": "Sticky Notes",
    "version": "1.1.2",
    "browser_action": {
        "default_popup": "Popup.html",
        "browser_style": true,
        "default_icon": "StickyNote.png",
        "default_title": "Sticky Note Adder"
    },
    "icons": {
        "48": "StickyNote.png",
        "96": "StickyNote.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "Thumbtack.png",
        "delete-sign.png"
    ]
}