Check'em All

Recursively checks a webpage for broken links.

Check'em All là gì?

Check'em All là một tiện ích mở rộng Chrome được phát triển bởi BumbleDev, và tính năng chính của nó là "Recursively checks a webpage for broken links.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Check'em All

Tải xuống các tệp mở rộng Check'em All dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This tool checks a webpage and recursively the linked pages for any broken links until a specified recursive depth is reached. Once the check has been completed the result will be available in a neat CSV file.

A special feature is the possibility of narrowing down the search by only checking for links that are inside a certain HTML DOM element (specified a CSS selector) and furthermore by being able to exlude links that contain special keywords (e.g. logout, signout, delete or remove) or that do NOT contain a defined string.

-------------------

Instructions:

Open the page to be initially checked.
Click on the extension icon in the top right corner.
Enter parameters:

Maximum recursive depth 
Default: 2 (checks all links on current page and again all links on pages linked to on the initial page)
 
Only continue checking for URLs containing
(leave blank if not needed) 
Example: example.com (won’t check any further on e.g. test.com pages, that example.com or any of its subpages might have linked to)

Don't visit URLs containing 
(separate by comma, leave blank if not needed) 
Default: logout,signout,delete,remove
Only check links in DOM elements qualified by 
(use CSS selector syntax, leave blank if not needed)
Example: #contentSectionB (only selects HTML element with ID “contentSectionB”)

Click “Initiate check”.
CSV file will be generated. Open with Excel. Apply filter -> Exclude Status = OK.

-------------------

Development: Frederik Hummel, bumbledev.com
Graphics: Cassian Knoth, knothart.com                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Check'em All Check'em All
ID ancljcadaekjlioohiigoaidfkikemei
URL Chính Thức https://chrome.google.com/webstore/detail/checkem-all/ancljcadaekjlioohiigoaidfkikemei
Mô tả Recursively checks a webpage for broken links.
Kích Thước Tệp 223 KB
Số Lần Cài Đặt 70
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2017-05-17
Ngày Phát Hành 2017-05-17
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển BumbleDev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Check'em All",
    "version": "1.0.2",
    "description": "Recursively checks a webpage for broken links.",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "lib-jq\/jquery.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs"
    ]
}