Sitemap Parser

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

Qu'est-ce que Sitemap Parser ?

Sitemap Parser est une extension Chrome développée par BrNo, et sa fonction principale est "Pulls a list of URLs from a sitemap.xml source and copies the list to the clipboard.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Sitemap Parser

Téléchargez les fichiers d'extension Sitemap Parser au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Sitemap Parser Sitemap Parser
ID dkifegcdocfkajdmngcklhppafbcddif
URL Officiel https://chromewebstore.google.com/detail/sitemap-parser/dkifegcdocfkajdmngcklhppafbcddif
Description Pulls a list of URLs from a sitemap.xml source and copies the list to the clipboard.
Taille du Fichier 14.43 KB
Nombre d'Installations 1,131
Version Actuelle 1.5
Dernière Mise à Jour 2020-09-03
Date de Publication 2020-08-18
Évaluation 2.33/5 Total 3 Évaluations
Développeur BrNo
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}