Web Auto Sorter

Automatically sorts and saves visited web pages links by their categories.

Τι είναι το Web Auto Sorter;

Το Web Auto Sorter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον gelosx1, και η κύρια λειτουργία του είναι "Automatically sorts and saves visited web pages links by their categories.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Updates:
1.0.1 - Added functionality for handling multi-word category names effectively.
1.0.2 - Introduced an "edit" tab in the menu for editing, adding, or deleting category keywords. For quick access to the "edit" tab, a gear icon button has been added to the category button bar.

 Automatic Sorting of Web Pages is a Google Chrome extension that allows you to automatically sort your web pages by relevance and topic. With this extension, you no longer have to waste time manually organizing your bookmarks or searching through cluttered tabs. Extension analyzes the content of each page and assigns it to the appropriate category, making it easy for you to access the information you need quickly and efficiently.

Key features:
 * Customizable categories to suit your specific needs
 * Automatic categorization of web pages based on their content
 * Searching inside categories
 * Simple and intuitive user interface

 Automatic Sorting of Web Pages provides the ability for users to create custom categories and add specific keywords to those categories. This means that you can tailor your web sorting experience to your unique needs and preferences. 

 Within each category, you can also use a search field to quickly find specific links you need, thus reducing the number of links shown on the page.

 Uncategorized links can be collected in the "uncategorized" folder, but if you don't want to collect them, you can select the appropriate option on the settings page.
 Also, if you don't want "uncategorized" folder to be displayed, you can choose whether or not to show it using the relevant option in the settings page.

 In addition to sorting and searching for links, you can also delete unnecessary links, folders, or to clear folders without permanently deleting them. 

 Automatic Sorting of Web Pages is the  solution for a streamline  searching of visited web pages, that provides added flexibility and convenience when managing your web content.Try it out and experience the benefits of automatic sorting.                    

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

Όνομα Web Auto Sorter Web Auto Sorter
ID fnnhckphilgigejoombgadgpjjhnfnao
Επίσημο URL https://chromewebstore.google.com/detail/web-auto-sorter/fnnhckphilgigejoombgadgpjjhnfnao
Περιγραφή Automatically sorts and saves visited web pages links by their categories.
Μέγεθος Αρχείου 28.29 KB
Αριθμός Εγκαταστάσεων 27
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2023-04-25
Ημερομηνία Δημοσίευσης 2023-03-13
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής gelosx1
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Web Auto Sorter",
    "description": "Automatically sorts and saves visited web pages links by their categories.",
    "version": "1.0.2",
    "permissions": [
        "storage",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "default_icon": "bookmark-bar-icon.png",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/functions.js",
                "js\/sorter.js",
                "js\/styles.js",
                "js\/category.js",
                "js\/keyword.js"
            ]
        }
    ],
    "icons": {
        "64": "bookmark-icon.png",
        "128": "bookmark-bar-icon.png"
    }
}