Yawas

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

Was ist Yawas?

Yawas ist eine Chrome-Erweiterung, die von https://appblit.com entwickelt wurde, und ihr Hauptmerkmal ist "Highlight Web pages; stored in your browser bookmarks, searchable, and recreated automatically when you revisit a page".

Erweiterungsscreenshots

screenshot

Yawas-Erweiterungs-CRX-Datei herunterladen

Laden Sie Yawas-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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".                    

Grundlegende Informationen zur Erweiterung

Name Yawas Yawas
ID kjlghdmljfgngjdpeaiogebkiilpiimk
Offizielle URL https://chromewebstore.google.com/detail/yawas/kjlghdmljfgngjdpeaiogebkiilpiimk
Beschreibung Highlight Web pages; stored in your browser bookmarks, searchable, and recreated automatically when you revisit a page
Dateigröße 51.02 KB
Installationsanzahl 10,000
Aktuelle Version 7.4.0
Letztes Update 2022-03-16
Veröffentlichungsdatum 2020-04-01
Bewertung 3.39/5 Insgesamt 193 Bewertungen
Entwickler https://appblit.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.appblit.com/yawas
Hilfeseite URL https://www.appblit.com/yawas
URL der Datenschutzrichtlinien-Seite https://www.appblit.com/privacy
Unterstützte Sprachen 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"
        }
    }
}