GoNotes

Easy, accesible notes on every page.

GoNotesとは何ですか?

GoNotesはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Easy, accesible notes on every page.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

GoNotes拡張機能のCRXファイルをダウンロード

GoNotes拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 GoNotes GoNotes
ID lnheclbpjkkoocnpmbobhamfkfpblnlm
公式URL https://chromewebstore.google.com/detail/gonotes/lnheclbpjkkoocnpmbobhamfkfpblnlm
説明 Easy, accesible notes on every page.
ファイルサイズ 15.8 KB
インストール数 67
現在のバージョン 1.0.0
最終更新日 2019-08-10
公開日 2019-08-09
開発者 Unknown
支払い方法 free
対応言語 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
}