CleanUp

Clear cache and refresh the page at the same time

Τι είναι το CleanUp;

Το CleanUp είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Himesh, και η κύρια λειτουργία του είναι "Clear cache and refresh the page at the same time".

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

screenshot

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

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

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

                        CleanUp is a very simple application that clears the browser cache and automatically refreshes the current tab that is open. There are multiple applications out there that cleans the browser cache, but CleanUp is the first one that clears the cache along with refreshing the page, and as a software developer myself, I understand how important it is to have both the steps of cache CleanUp and refresh to happen at the same time. CleanUp can be used as an alternative to just simply refreshing the page, as it clears the browser cache, which is a big plus. Here is a basic understanding about cache:

Every website that the users visit saves their information like passwords, email, username, search terms etc. in the form of cache, which is stored in the browser. Different websites use this knowledge to know more about its users, and the knowledge gained by cache is also the result of why the ads we see are so related to our search results. Hence, it is important to clean the cache on a regular basis to prevent any kind of malfunction that can be caused with this information.

The application is for all type of audience, both users and developers. Users will simply be able to delete the browser cache which will prevent other websites from using their data that has been saved by the browser, aka "cache". For developers, people who mainly work with JavaScript, HTML, and CSS or use any kind of web designing techniques understand how important it is to clear browser cache when any changes are made in the code. I use Flask for web development myself, and I find CleanUp extremely useful when I make any changes to my HTML or JavaScript file.

Hope everyone out there enjoys some CleanUp!

Please direct all the inquires/bugs/questions to: [email protected]
Icon credits: iconarchive.com                    

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

Όνομα CleanUp CleanUp
ID lpjdifkmhncpkkaaglchomjbgbopfjeo
Επίσημο URL https://chromewebstore.google.com/detail/cleanup/lpjdifkmhncpkkaaglchomjbgbopfjeo
Περιγραφή Clear cache and refresh the page at the same time
Μέγεθος Αρχείου 324 KB
Αριθμός Εγκαταστάσεων 2,100
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2020-04-19
Ημερομηνία Δημοσίευσης 2020-04-18
Αξιολόγηση 4.20/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής Himesh
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CleanUp",
    "short_name": "CleanUp",
    "author": "Himesh Buch",
    "version": "1.0",
    "description": "Clear cache and refresh the page at the same time",
    "manifest_version": 2,
    "permissions": [
        "browsingData"
    ],
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "icons": {
        "256": "icon_256.png",
        "128": "icon_128.png",
        "48": "icon_48.png",
        "16": "icon_16.png"
    },
    "browser_action": {
        "default_icon": "icon_256.png"
    }
}