404-me-not

Search the Wayback Machine and your favorite search engine for missing web pages.

404-me-notคืออะไร?

404-me-not เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MH Virtual และคุณลักษณะหลักของมันคือ "Search the Wayback Machine and your favorite search engine for missing web pages."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย 404-me-not

ดาวน์โหลดไฟล์ส่วนขยาย 404-me-not ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        404-me-not saves you time by making it extremely easy to search for missing webpages. It will search both the Wayback Machine (a huge database of archived pages) and whatever search engine you choose, using the last part of the URL and keywords you supply as clues.

Searches are triggered by clicking Ok on a popup that automatically shows when a 404 error (page not found) is detected or by dragging the offending link (and optionally the highlighted link text; this requires another extension).

Note: As explained in the demo video, 404-me-not is open source and does not report data about the sites you visit to anyone.

Changelog
---------

v. 1.1.0 -- If install is an update don't display options.
v. 1.0.0 -- Code cleanup. Changed parsing behavior so trailing URL slash, page extension, and query strings are always ignored.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 404-me-not 404-me-not
ID ghibbpidlpkakmdfafpgpijahndidbka
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/404-me-not/ghibbpidlpkakmdfafpgpijahndidbka
คำอธิบาย Search the Wayback Machine and your favorite search engine for missing web pages.
ขนาดไฟล์ 33.99 KB
จำนวนการติดตั้ง 285
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2016-02-17
วันที่เผยแพร่ 2016-02-17
คะแนน 4.20/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา MH Virtual
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ http://www.mhvirtual.com/2016/01/15/404-me-not-a-browser-extension-for-finding-missing-webpages/
ภาษาที่รองรับ en-US
manifest.json
{
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "dragit.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Search the Wayback Machine and your favorite search engine for missing web pages.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png"
    },
    "manifest_version": 2,
    "name": "404-me-not",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "storage",
        "webRequest",
        ""
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.1.0",
    "page_action": {
        "default_icon": {
            "38": "icon38.png"
        },
        "default_popup": "popup.html"
    }
}