Sitemap Parser

Pulls a list of URLs from a sitemap.xml source and copies the list to the clipboard.

Sitemap Parser là gì?

Sitemap Parser là một tiện ích mở rộng Chrome được phát triển bởi BrNo, và tính năng chính của nó là "Pulls a list of URLs from a sitemap.xml source and copies the list to the clipboard.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sitemap Parser

Tải xuống các tệp mở rộng Sitemap Parser 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

                        Clicking on the extension icon when on a sitemap.xml page displays a popup to copy the list of sitemap URLs to the clipboard so that users can paste the list into Microsoft Excel Google Sheets, or a preferred text editor.

Version 1.5 now supports URL extraction from HTML-based sitemaps generated by Yoast and other SEO tools.                    

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

Tên Sitemap Parser Sitemap Parser
ID dkifegcdocfkajdmngcklhppafbcddif
URL Chính Thức https://chromewebstore.google.com/detail/sitemap-parser/dkifegcdocfkajdmngcklhppafbcddif
Mô tả Pulls a list of URLs from a sitemap.xml source and copies the list to the clipboard.
Kích Thước Tệp 14.43 KB
Số Lần Cài Đặt 1,131
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2020-09-03
Ngày Phát Hành 2020-08-18
Đánh Giá 2.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển BrNo
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",
    "name": "Sitemap Parser",
    "version": "1.5",
    "description": "Pulls a list of URLs from a sitemap.xml source and copies the list to the clipboard.",
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/sp16.png",
            "32": "images\/sp32.png",
            "48": "images\/sp48.png",
            "128": "images\/sp128.png"
        }
    },
    "icons": {
        "16": "images\/sp16.png",
        "32": "images\/sp32.png",
        "48": "images\/sp48.png",
        "128": "images\/sp128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com https:\/\/stackpath.bootstrapcdn.com https:\/\/code.jquery.com https:\/\/cdnjs.cloudflare.com; object-src 'self';",
    "manifest_version": 2
}