Save Page State
Chrome extension to save a state of a page for remote analysis
Vad är Save Page State?
Save Page State är en Chrome-tillägg utvecklad av Wing Leung, och dess huvudfunktion är "Chrome extension to save a state of a page for remote analysis".
Tilläggsskärmbilder
Ladda ner Save Page State-förlängningens CRX-fil
Ladda ner Save Page State-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
A chrome extension to save the state of a page for further analysis. Grundläggande Information om Tillägg
| Namn | |
| ID | aokllhajmkihfihciggkmpgdhgecgaic |
| Officiell webbadress | https://chromewebstore.google.com/detail/save-page-state/aokllhajmkihfihciggkmpgdhgecgaic |
| Beskrivning | Chrome extension to save a state of a page for remote analysis |
| Filstorlek | 52.27 KB |
| Antal Installationer | 241 |
| Aktuell Version | 1.0.1 |
| Senast Uppdaterad | 2018-12-17 |
| Publiceringsdatum | 2018-12-12 |
| Betyg | 1.00/5 Totalt 2 Betyg |
| Utvecklare | Wing Leung |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/vrtdev/save-page-state |
| Stödda Språk | 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",
"*:\/\/*\/*"
]
} | |