WARCreate

Create Wayback-Consumable WARC Files from Any Webpage

WARCreateคืออะไร?

WARCreate เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://matkelly.com และคุณลักษณะหลักของมันคือ "Create Wayback-Consumable WARC Files from Any Webpage"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WARCreate

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
อีเมล [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"
}