Page Screenshot

Take a screenshot from the entire website with just one click!

Τι είναι το Page Screenshot;

Το Page Screenshot είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον MeryDev, και η κύρια λειτουργία του είναι "Take a screenshot from the entire website with just one click!".

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

screenshot
screenshot

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

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

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

                        Page Screenshot is an addon that enables you to capture a full-page screenshot from any desired website. 

Please click on the toolbar button (or press Alt+Shift+D combination) to capture the screenshot. You can adjust the screenshot image format from the options page. Moreover, image quality and the time delay between multiple screenshots are also customizable. The screenshot will be saved to the default download location in your browser. Please note, to change the download location, visit the settings page in your browser.

Note 1: you need to "reload" all opened tabs before using the addon.

Note 2: for long-page websites, Page Screenshot automatically scrolls the page from top to bottom (vertical scroll) to capture the screenshot. But, it does not have a horizontal scroll in case the page is too wide.

To report bugs, please fill out the bug report form on the addon's homepage (https://mybrowseraddon.com/page-screenshot.html).                    

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

Όνομα Page Screenshot Page Screenshot
ID aoifpkjpdcfpdphnncjhgljdhpolajii
Επίσημο URL https://chromewebstore.google.com/detail/page-screenshot/aoifpkjpdcfpdphnncjhgljdhpolajii
Περιγραφή Take a screenshot from the entire website with just one click!
Μέγεθος Αρχείου 28.08 KB
Αριθμός Εγκαταστάσεων 9,248
Τρέχουσα Έκδοση 0.1.6
Τελευταία Ενημέρωση 2024-01-13
Ημερομηνία Δημοσίευσης 2020-05-04
Αξιολόγηση 3.40/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής MeryDev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://mybrowseraddon.com/page-screenshot.html
Διεύθυνση URL της Σελίδας Βοήθειας https://mybrowseraddon.com/page-screenshot.html
URL της Σελίδας Πολιτικής Απορρήτου https://add0n.com/policies/mery.dev.txt
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.6",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Page Screenshot",
    "optional_host_permissions": [
        ""
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/page-screenshot.html",
    "description": "Take a screenshot from the entire website with just one click!",
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_title": "Page Screenshot",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "commands": {
        "capture": {
            "description": "Take screenshot",
            "suggested_key": {
                "default": "Alt+Shift+D"
            }
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}