Save Page State
Chrome extension to save a state of a page for remote analysis
Cos'è Save Page State?
Save Page State è un'estensione di Chrome sviluppata da Wing Leung, e la sua funzione principale è "Chrome extension to save a state of a page for remote analysis".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Save Page State
Scarica i file di estensione Save Page State 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
A chrome extension to save the state of a page for further analysis.
Informazioni di Base sull'Estensione
Nome | Save Page State |
ID | aokllhajmkihfihciggkmpgdhgecgaic |
URL Ufficiale | https://chromewebstore.google.com/detail/save-page-state/aokllhajmkihfihciggkmpgdhgecgaic |
Descrizione | Chrome extension to save a state of a page for remote analysis |
Dimensione del File | 52.27 KB |
Conteggio Installazioni | 241 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2018-12-17 |
Data di Pubblicazione | 2018-12-12 |
Valutazione | 1.00/5 Totale 2 Valutazioni |
Sviluppatore | Wing Leung |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/vrtdev/save-page-state |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Save Page State", "version": "1.0.1", "description": "Chrome extension to save a state of a page for remote analysis", "manifest_version": 2, "icons": { "128": "images\/icon.png" }, "browser_action": { "default_icon": "images\/icon.png" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/content.js" ] } ], "permissions": [ "activeTab", "pageCapture", "*:\/\/*\/*" ] } |