Save Page State
Chrome extension to save a state of a page for remote analysis
什麼是Save Page State?
Save Page State是由Wing Leung開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension to save a state of a page for remote analysis”。
擴展截圖
下載Save Page State擴展crx文件
下載Save Page State擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A chrome extension to save the state of a page for further analysis.
擴展基本資訊
名稱 | Save Page State |
ID | aokllhajmkihfihciggkmpgdhgecgaic |
官方網址 | https://chromewebstore.google.com/detail/save-page-state/aokllhajmkihfihciggkmpgdhgecgaic |
簡介 | Chrome extension to save a state of a page for remote analysis |
檔案大小 | 52.27 KB |
安裝次數 | 241 |
目前版本 | 1.0.1 |
更新時間 | 2018-12-17 |
上架時間 | 2018-12-12 |
評分 | 1.00/5 共 2 次評分 |
開發者 | Wing Leung |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/vrtdev/save-page-state |
支援的語言 | 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", "*:\/\/*\/*" ] } |