Cloud File Viewer

Chrome extension that streamlines file viewing for Google Cloud Storage with easy-to-use features like pagination and search

Τι είναι το Cloud File Viewer;

Το Cloud File Viewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://cloudfileviewer.com, και η κύρια λειτουργία του είναι "Chrome extension that streamlines file viewing for Google Cloud Storage with easy-to-use features like pagination and search".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Unleash the enhanced capabilities of Cloud File Viewer – your go-to Chrome extension for seamless interaction with Google Cloud Storage. No more hassle of downloading files just to preview their content. Cloud File Viewer transforms your Google Cloud Storage browsing experience by allowing you to effortlessly preview files within your browser. A single click on the icon next to the file opens a modal window, offering a user-friendly and efficient file viewing experience.

What's New in Version 0.0.0.10:

Bug Fixes and Icon Update: In response to user feedback, we've resolved a bug affecting file searches and improved the file preview icon for clarity and consistency. Previously, we used an eye icon, but now it's been replaced with a more intuitive magnifying glass, aligning better with the tool's purpose.

Features overview:

Extended File Compatibility: Cloud File Viewer now supports an even broader range of file types, including text/csv, application/octet-stream, application/json, text/plain, and introduces the ability to read gzip-compressed files (application/gzip and application/x-gzip). Note that the file size option (ranging from 1 MB to 5 MB) controls the accessible portion of the gzip files.

Smart File Size Options: Tailor your viewing experience by selecting from various file size options (1 MB, 2 MB, 3 MB, 4 MB, or 5 MB). This feature ensures a customized and efficient navigation experience. Additionally, the automatic filename shortening feature aids in better file organization.

Search Functionality: Effortlessly locate information within your files using the powerful search feature. Please be aware that, during a search, a maximum of 20 MB of data is returned per search. Note that the search function is currently disabled for gzip-compressed files.

Limitations: While Cloud File Viewer excels in supporting various file types, please be aware that files with extensions .tar.gz and .tgz are currently not accessible through the extension.

Revolutionize your interaction with Google Cloud Storage today! Download Cloud File Viewer now to elevate your productivity and simplify your Google Cloud Storage experience. Maximize efficiency – simplify with Cloud File Viewer.                    

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

Όνομα Cloud File Viewer Cloud File Viewer
ID idlgfgmjjleagmkkfekibaincekfienk
Επίσημο URL https://chromewebstore.google.com/detail/cloud-file-viewer/idlgfgmjjleagmkkfekibaincekfienk
Περιγραφή Chrome extension that streamlines file viewing for Google Cloud Storage with easy-to-use features like pagination and search
Μέγεθος Αρχείου 75.41 KB
Αριθμός Εγκαταστάσεων 301
Τρέχουσα Έκδοση 0.0.0.10
Τελευταία Ενημέρωση 2024-02-14
Ημερομηνία Δημοσίευσης 2023-02-14
Αξιολόγηση 5.00/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής https://cloudfileviewer.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://cloudfileviewer.com/
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cloud File Viewer",
    "version": "0.0.0.10",
    "description": "Chrome extension that streamlines file viewing for Google Cloud Storage with easy-to-use features like pagination and search",
    "permissions": [
        "scripting",
        "storage",
        "tabs"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; img-src 'self'; style-src 'self' https:\/\/fonts.googleapis.com;"
    },
    "host_permissions": [
        "https:\/\/*.console.cloud.google.com\/*",
        "https:\/\/*.storage.cloud.google.com\/*"
    ],
    "icons": {
        "16": "assets\/icon16.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.console.cloud.google.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/eye.css",
                "css\/modal.css",
                "css\/loading_spinner.css"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "32": "assets\/icon32.png",
            "48": "assets\/icon48.png",
            "128": "assets\/icon128.png"
        },
        "default_title": "Cloud File Viewer",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}