Yawas

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

Τι είναι το Yawas;

Το Yawas είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://appblit.com, και η κύρια λειτουργία του είναι "Highlight Web pages; stored in your browser bookmarks, searchable, and recreated automatically when you revisit a page".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Yawas

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
        }
    }
}