GoNotes

Easy, accesible notes on every page.

GoNotes là gì?

GoNotes là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Easy, accesible notes on every page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GoNotes

Tải xuống các tệp mở rộng GoNotes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        GoNotes is a extension that makes it easy for people to take notes in every tab!

Just by inputting a title and a note, users are able to create unique notes and save them on the New Tab page. 

Right now, GoNotes is still in alpha and still needs a lot of work before it is a fully-fledged project. Any feedback into bugs and new features that would improve the functionality of the app can be left in the comments. Thanks!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GoNotes GoNotes
ID lnheclbpjkkoocnpmbobhamfkfpblnlm
URL Chính Thức https://chromewebstore.google.com/detail/gonotes/lnheclbpjkkoocnpmbobhamfkfpblnlm
Mô tả Easy, accesible notes on every page.
Kích Thước Tệp 15.8 KB
Số Lần Cài Đặt 67
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2019-08-10
Ngày Phát Hành 2019-08-09
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GoNotes",
    "version": "1.0.0",
    "description": "Easy, accesible notes on every page.",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl + Shift + E",
                "mac": "Command + Shift + E"
            }
        }
    },
    "chrome_url_overrides": {
        "newtab": "newTab.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Notes",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}