Sitemap Parser

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

Sitemap Parser란 무엇입니까?

Sitemap Parser은(는) BrNo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pulls a list of URLs from a sitemap.xml source and copies the list to the clipboard."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Sitemap Parser 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Sitemap Parser Sitemap Parser
ID dkifegcdocfkajdmngcklhppafbcddif
공식 URL https://chromewebstore.google.com/detail/sitemap-parser/dkifegcdocfkajdmngcklhppafbcddif
설명 Pulls a list of URLs from a sitemap.xml source and copies the list to the clipboard.
파일 크기 14.43 KB
설치 횟수 1,131
현재 버전 1.5
최근 업데이트 2020-09-03
출시 날짜 2020-08-18
평점 2.33/5 총 3 개의 평점
개발자 BrNo
이메일 [email protected]
결제 유형 free
지원되는 언어 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
}