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 |
公式URL | 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 |
Eメール | [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" } |