Sitemap Parser
Pulls a list of URLs from a sitemap.xml source and copies the list to the clipboard.
Sitemap Parserคืออะไร?
Sitemap Parser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย BrNo และคุณลักษณะหลักของมันคือ "Pulls a list of URLs from a sitemap.xml source and copies the list to the clipboard."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sitemap Parser
ดาวน์โหลดไฟล์ส่วนขยาย Sitemap Parser ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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 } |