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.”。
扩展截图
下载Sitemap Parser扩展crx文件
下载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 } |