Screenshot
Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.
Cos'è Screenshot?
Screenshot è un'estensione di Chrome sviluppata da BrowserNative, e la sua funzione principale è "Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Screenshot
Scarica i file di estensione Screenshot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Users can select screenshot file format (PNG or JPEG) from the Options. After capturing the screenshot, extension saves it. You can opt to see it in a new tab. Extremely fast, light-weight and privacy friendly extension by BrowserNative.
Informazioni di Base sull'Estensione
Nome | Screenshot |
ID | mafopchedjkbgkpbbnbgifaolempmdgh |
URL Ufficiale | https://chromewebstore.google.com/detail/screenshot/mafopchedjkbgkpbbnbgifaolempmdgh |
Descrizione | Quickly take screenshot of current tab. Keyboard Commnd: Alt+P. |
Dimensione del File | 40.96 KB |
Conteggio Installazioni | 8,507 |
Versione Corrente | 0.0.5 |
Ultimo Aggiornamento | 2019-11-18 |
Data di Pubblicazione | 2019-11-12 |
Valutazione | 4.71/5 Totale 35 Valutazioni |
Sviluppatore | BrowserNative |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://browsernative.com/screenshot-extension/ |
URL della Pagina di Aiuto | https://browsernative.com/screenshot-extension/ |
URL della Pagina della Politica sulla Privacy | https://browsernative.com/extensions-privacy-policy |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Screenshot", "description": "Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.", "version": "0.0.5", "manifest_version": 2, "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "static\/128.png", "default_title": "Take Screenshot" }, "icons": { "48": "static\/48.png", "128": "static\/128.png" }, "permissions": [ "activeTab", "downloads" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+P" } } }, "options_ui": { "page": "options.html", "open_in_tab": true }, "homepage_url": "https:\/\/browsernative.com\/screenshot-extension\/" } |