Yawas

Highlight Web pages; stored in your browser bookmarks, searchable, and recreated automatically when you revisit a page

Yawasとは何ですか?

Yawasはhttps://appblit.comによって開発されたChromeの拡張機能で、その主な機能は「Highlight Web pages; stored in your browser bookmarks, searchable, and recreated automatically when you revisit a page」です。

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

screenshot

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

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

拡張機能の使用方法

                        Yawas lets you highlight and comment web pages  in multiple colors.

Your highlights are stored in the built-in Chrome Bookmarks API (you need to check Sync if you want them to be synchronized across all your devices).

Yawas automatically recreates the highlights when you reopen web pages.

All functions are available from the context-menu (Ctrl-Shift-Y for Yellow)
To highlight, simply select some text and choose the color from the context menu.
To add a note or comment, mouse over an existing highlight and pick "Add Note" (or the keyboard shortcut -N).
To recolor or delete a highlight, select some of its text and choose another color or "Delete" from the context-menu.

You can also quickly search all your bookmarks with "Yawas - Search" or edit the current page's highlights using "Yawas - Edit".                    

拡張機能の基本情報

名前 Yawas Yawas
ID kjlghdmljfgngjdpeaiogebkiilpiimk
公式URL https://chromewebstore.google.com/detail/yawas/kjlghdmljfgngjdpeaiogebkiilpiimk
説明 Highlight Web pages; stored in your browser bookmarks, searchable, and recreated automatically when you revisit a page
ファイルサイズ 51.02 KB
インストール数 10,000
現在のバージョン 7.4.0
最終更新日 2022-03-16
公開日 2020-04-01
評価 3.39/5 合計 193 レビュー
開発者 https://appblit.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.appblit.com/yawas
ヘルプページのURL https://www.appblit.com/yawas
プライバシーポリシーページのURL https://www.appblit.com/privacy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Yawas",
    "author": "Laurent Denoue",
    "manifest_version": 3,
    "version": "7.4.0",
    "description": "Highlight Web pages; stored in your browser bookmarks, searchable, and recreated automatically when you revisit a page",
    "background": {
        "service_worker": "yawas-background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.slack.com\/*",
                "*:\/\/web.whatsapp.com\/*",
                "*:\/\/www.google.com\/bookmarks\/*",
                "*:\/\/accounts.google.com\/*"
            ],
            "js": [
                "yawas-content-script.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "localsearch.html",
                "localedit.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "tabs",
        "bookmarks"
    ],
    "action": {
        "default_title": "Yawas",
        "default_icon": "yawas_on_128.png",
        "default_popup": "options.html"
    },
    "icons": {
        "128": "yawas_on_128.png"
    },
    "commands": {
        "yawas-yellow": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Alt+Shift+Y"
            },
            "description": "Yawas Yellow"
        },
        "yawas-red": {
            "suggested_key": {
                "default": "Ctrl+Shift+R",
                "mac": "Alt+Shift+R"
            },
            "description": "Yawas Red"
        },
        "yawas-blue": {
            "suggested_key": {
                "default": "Ctrl+Shift+B",
                "mac": "Alt+Shift+B"
            },
            "description": "Yawas Blue"
        },
        "yawas-green": {
            "suggested_key": {
                "default": "Ctrl+Shift+G",
                "mac": "Alt+Shift+G"
            },
            "description": "Yawas Green"
        }
    }
}