Link Checker

This extension runs through links on the current pages and checks whether they work

Link Checkerคืออะไร?

Link Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ahallicks และคุณลักษณะหลักของมันคือ "This extension runs through links on the current pages and checks whether they work"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension runs through all of the links on the currently active webpage and shows their response status inline, and as an overall in a handy little popup. See the percentage complete, the number of good, bad and warning links, and how long the report took.

You can also use the key combination Ctrl (Command) + Shift + K to run the extension.

As well as checking all the links on a page you can click the green, amber and red sections in the pop up to view the links in a handy list. From there you can even click the link to find where it is on the page (as long as it's not hidden by a parent element).

There is a context menu when right-clicking a link on the current webpage to run Link Checkr manually for that link. From there you can see the status of that link, hover over the icon to see more in-depth details, and click the icon to remove it.

In the options you can switch between using HEAD and GET request methods. HEAD is faster, but GET is more reliable. It's entirely up to you which you choose!                    

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

ชื่อ Link Checker Link Checker
ID olcpkmmoifipcklgnphbhdhbpfniijmb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/link-checker/olcpkmmoifipcklgnphbhdhbpfniijmb
คำอธิบาย This extension runs through links on the current pages and checks whether they work
ขนาดไฟล์ 91.61 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 1.0.5
อัปเดตครั้งล่าสุด 2014-08-28
วันที่เผยแพร่ 2014-08-28
คะแนน 4.13/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา ahallicks
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://bitbucket.org/ahallicks/link-checkr/issues
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Checker",
    "description": "This extension runs through links on the current pages and checks whether they work",
    "version": "1.0.5",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications",
        "storage",
        "contextMenus"
    ],
    "browser_action": {
        "default_icon": {
            "16": "img\/icon-16.png",
            "19": "img\/icon.png",
            "38": "img\/icon-38.png"
        },
        "default_title": "Run Link Checkr"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/LinkCheckr.js"
            ],
            "css": [
                "css\/LinkCheckr.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "img\/icon.png",
        "32": "img\/icon-38.png",
        "48": "img\/icon-64.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "img\/icon-64.png"
    ],
    "options_page": "options.html",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            }
        }
    }
}