Sitemap Parser
Pulls a list of URLs from a sitemap.xml source and copies the list to the clipboard.
Vad är Sitemap Parser?
Sitemap Parser är en Chrome-tillägg utvecklad av BrNo, och dess huvudfunktion är "Pulls a list of URLs from a sitemap.xml source and copies the list to the clipboard.".
Tilläggsskärmbilder
Ladda ner Sitemap Parser-förlängningens CRX-fil
Ladda ner Sitemap Parser-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | dkifegcdocfkajdmngcklhppafbcddif |
| Officiell webbadress | https://chromewebstore.google.com/detail/sitemap-parser/dkifegcdocfkajdmngcklhppafbcddif |
| Beskrivning | Pulls a list of URLs from a sitemap.xml source and copies the list to the clipboard. |
| Filstorlek | 14.43 KB |
| Antal Installationer | 1,131 |
| Aktuell Version | 1.5 |
| Senast Uppdaterad | 2020-09-03 |
| Publiceringsdatum | 2020-08-18 |
| Betyg | 2.33/5 Totalt 3 Betyg |
| Utvecklare | BrNo |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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
} | |