Note Anywhere

Make notes on any web page, any position.

Note Anywhere क्या है?

Note Anywhere My Atoms द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make notes on any web page, any position."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        27th Oct, 2023: After 10 years and used by more than 100K users, the version 1.0.0 just launched now! This version fixed the bugs on 0.9.x and optimized performance a lot!

the features:
1) on any page, you can make note on the web page, on any position 
2) the notes get saved in real time.
3) all notes can move by mouse: drag and drop the bar
4) when you go to that page again, the notes get loaded automatically.
5) and on the logo, it shows a badge indicate the note counts of that page.
6) options to change the style of notes
7) a notes summary feature
8) resize note
9) create note by using context menu
10) show/hide/iconize/pin/unpin notes on page
11) list all notes of a page
12) create note by right click on web page

From version: 0.9.0:

1) all notes list page
2) sync notes between different computers

1.0.2

- fix bugs on audio page

1.0.0:

1) fix bugs

Please give me feedback if you like it.

William

Change Log:

0.7:
- fixed options save bug

0.7.1
- optimize options page

0.7.2
- resize note
- set note bar position

0.7.3
- create note with context menu

0.7.4
- fix select text in note bug
- move note by drag the bar

0.8
- show/hide notes on page
- iconize notes on page
- list all notes of a page in popup

0.8.1
- performance improvement

0.8.2
- choose colors
- pin/unpin note

0.8.3
- Delete all notes of a page on summary page

0.8.4
- can show/hide Date time on the bar in options page

0.9.0
- Sync notes                    

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

नाम Note Anywhere Note Anywhere
ID bohahkiiknkelflnjjlipnaeapefmjbh
आधिकारिक URL https://chromewebstore.google.com/detail/note-anywhere/bohahkiiknkelflnjjlipnaeapefmjbh
विवरण Make notes on any web page, any position.
फ़ाइल का आकार 168 KB
स्थापना संख्या 144,068
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2023-12-06
प्रकाशन तिथि 2015-08-14
रेटिंग 3.92/5 कुल 1767 रेटिंग्स
डेवलपर My Atoms
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://myatoms.io/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Note Anywhere",
    "version": "1.0.2",
    "icons": {
        "16": "assets\/icons\/note_sticky_icon_16.png",
        "32": "assets\/icons\/note_sticky_icon_32.png",
        "48": "assets\/icons\/note_sticky_icon_48.png",
        "128": "assets\/icons\/note_sticky_icon_128.png"
    },
    "description": "Make notes on any web page, any position.",
    "homepage_url": "https:\/\/myatoms.io",
    "short_name": "Note Anywhere",
    "permissions": [
        "tabs",
        "contextMenus",
        "alarms",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "author": "William",
    "minimum_chrome_version": "88",
    "action": {
        "default_icon": {
            "16": "assets\/icons\/note_sticky_icon_16.png",
            "32": "assets\/icons\/note_sticky_icon_32.png",
            "48": "assets\/icons\/note_sticky_icon_48.png",
            "128": "assets\/icons\/note_sticky_icon_128.png"
        },
        "default_title": "Note AnyWhere",
        "default_popup": "popup.html",
        "chrome_style": false
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "js\/background.bundle.js"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/*.myatoms.io\/*",
            "http:\/\/localhost:9000\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "js\/contentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "assets\/css\/sticky.css",
                "assets\/icons\/note_sticky_icon_48.png"
            ]
        }
    ]
}