WARCreate
Create Wayback-Consumable WARC Files from Any Webpage
什麼是WARCreate?
WARCreate是由https://matkelly.com開發的Chrome擴展程式,該擴展的主要功能是“Create Wayback-Consumable WARC Files from Any Webpage”。
擴展截圖
下載WARCreate擴展crx文件
下載WARCreate擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
WARCreate is a Google Chrome extension that allows a user to create a Web ARChive (WARC) file from any browsable webpage. The resulting files can then be used with other tools like the Internet Archive's open source Wayback Machine. The tool is an evolving product with the end result pushing toward being a personal web archiving solution for those that wish to securely archive their metadata in a standardize way. RECENT VERSION HISTORY Version 0.2021.6.28 Fixes an issue to capture URIs without relative indicators.
擴展基本資訊
名稱 | WARCreate |
ID | kenncghfghgolcbmckhiljgaabnpcaaa |
官方網址 | https://chromewebstore.google.com/detail/warcreate/kenncghfghgolcbmckhiljgaabnpcaaa |
簡介 | Create Wayback-Consumable WARC Files from Any Webpage |
檔案大小 | 585 KB |
安裝次數 | 1,660 |
目前版本 | 0.2021.6.28 build 1307 |
更新時間 | 2021-06-30 |
上架時間 | 2019-01-19 |
評分 | 3.67/5 共 9 次評分 |
開發者 | https://matkelly.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://warcreate.com |
隱私政策頁面URL | https://github.com/machawk1/Mink/blob/master/PrivacyPolicy.md |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WARCreate", "version": "0.2021.6.28", "version_name": "0.2021.6.28 build 1307", "description": "Create Wayback-Consumable WARC Files from Any Webpage", "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "background": { "page": "html\/background.html" }, "homepage_url": "http:\/\/warcreate.com", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery-2.1.1.min.js", "js\/content.js" ] } ], "page_action": { "default_icon": "icons\/icon-19.png", "default_title": "WARCreate", "default_popup": "html\/popup.html" }, "permissions": [ "webRequest", "tabs", "activeTab", "storage", "unlimitedStorage", "http:\/\/*\/*", "http:\/\/*\/", "*:\/\/*\/*", "notifications" ], "options_ui": { "page": "html\/options.html" }, "short_name": "WARCreate", "content_security_policy": "script-src 'self'; object-src 'self'", "minimum_chrome_version": "23.0" } |