Save Page State
Chrome extension to save a state of a page for remote analysis
Wat is Save Page State?
Save Page State is een Chrome-extensie ontwikkeld door Wing Leung, en de belangrijkste functie is "Chrome extension to save a state of a page for remote analysis".
Extensie Screenshots
Download het CRX-bestand van de extensie Save Page State
Download Save Page State-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
A chrome extension to save the state of a page for further analysis.
Basisinformatie over de Extensie
Naam | Save Page State |
ID | aokllhajmkihfihciggkmpgdhgecgaic |
Officiële URL | https://chromewebstore.google.com/detail/save-page-state/aokllhajmkihfihciggkmpgdhgecgaic |
Beschrijving | Chrome extension to save a state of a page for remote analysis |
Bestandsgrootte | 52.27 KB |
Aantal Installaties | 241 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2018-12-17 |
Publicatiedatum | 2018-12-12 |
Beoordeling | 1.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Wing Leung |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/vrtdev/save-page-state |
Ondersteunde Talen | 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", "*:\/\/*\/*" ] } |