Bookmarks in Google

What does this extension do? When making use of Google search, this extension will highlight websites which are in your bookmarks.…

Τι είναι το Bookmarks in Google;

Το Bookmarks in Google είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον AriAlavi, και η κύρια λειτουργία του είναι "What does this extension do? When making use of Google search, this extension will highlight websites which are in your bookmarks.…".

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

screenshot
screenshot

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

Λήψη αρχείων επέκτασης Bookmarks in Google σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        What does this extension do?

When making use of Google search, this extension will highlight websites which are in your bookmarks. If the link is exactly the same, it will be bright yellow with a star next to it. If the link is from the same domain name as a bookmark, it will be highlighted with a softer yellow.

Great. Why?

A long time ago bookmarks were the way to navigate to your favorite websites. Nowadays, a quick google search will take you there. Here is where some people may encounter a problem.

The web is swimming with phishing websites — websites with harmful intent pretending to be the website you're trying to get to. One such way hackers abuse phishing websites is through logins. If you type your login details into such phishing websites, they'll have your login information and are sure to abuse it.

This may not be a problem when searching for "Youtube" or other extremely popular websites. However, such hackers will have an easier time phishing with less popular websites. This is where bookmarks could help your security. When you click on that bookmark, you know you are going to the same website you've been to last time.

Yet, many people's muscle memory is to Google the website they want to go to. This is where this extension comes in. First, bookmark your favorite websites. Then, when you want to access one of them, you can Google it as usual. If a result is highlighted yellow, then you can be sure that it is the website you're looking for. If the website has no highlight, then it is not in your bookmarks and may be a phishing website (if you are sure you bookmarked it).                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Bookmarks in Google Bookmarks in Google
ID egnehfkdejemmjlgphgeblpaocmakphe
Επίσημο URL https://chromewebstore.google.com/detail/bookmarks-in-google/egnehfkdejemmjlgphgeblpaocmakphe
Περιγραφή What does this extension do? When making use of Google search, this extension will highlight websites which are in your bookmarks.…
Μέγεθος Αρχείου 256 KB
Αριθμός Εγκαταστάσεων 30
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2020-07-31
Ημερομηνία Δημοσίευσης 2020-07-31
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής AriAlavi
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/AriAlavi/bookmarks_in_google
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bookmarks in Google",
    "version": "1.0",
    "author": "Arian Alavi",
    "homepage_url": "https:\/\/github.com\/AriAlavi\/bookmarks_in_google",
    "manifest_version": 2,
    "permissions": [
        "bookmarks"
    ],
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.google.com\/search?*"
            ],
            "js": [
                "google_bookmarker.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "bookmark_retriever.js"
        ],
        "persistent": false
    }
}