Sitemap Generator
Generate sitemaps using Chrome browser. Especially intended for generating sitemaps for dynamic single-page applications (SPAs).
Sitemap Generatorคืออะไร?
Sitemap Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย neea.dev และคุณลักษณะหลักของมันคือ "Generate sitemaps using Chrome browser. Especially intended for generating sitemaps for dynamic single-page applications (SPAs)."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sitemap Generator
ดาวน์โหลดไฟล์ส่วนขยาย Sitemap Generator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension lets you generate a sitemap for any public website right in your browser. While generating the sitemap, the extension renders the web pages and waits for javascript to load, making it great for crawling dynamic single page applications made with angular, react, etc. This extension works by taking some start URL, crawling that page for more links, and then recursively crawling those pages for more links. Once all discovered links have been checked, the extension outputs a sitemap file. This implementation is not practical for website containing tens of thousands of pages. It can however, crawl a few thousand entries in a reasonable amount of time. ================================ Privacy Policy ================================ This application does not collect not store information about any individual user. This application does not use persistent storage. All applications data is kept in runtime memory only. When application runs, it generates a sitemap for specific domain user has selected and only after user has explicitly granted permission to do so. Once the application execution ends, all data and the generated sitemap are lost once memory recycles. This application may collect anonymized and aggregated usage data according to google analytics t.o.s to improve user experience and to identify key functionality. Again, this information does not identify individual users and follows GA t.o.s.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Sitemap Generator |
ID | hcnjemngcihnhncobgdgkkfkhmleapah |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/sitemap-generator/hcnjemngcihnhncobgdgkkfkhmleapah |
คำอธิบาย | Generate sitemaps using Chrome browser. Especially intended for generating sitemaps for dynamic single-page applications (SPAs). |
ขนาดไฟล์ | 62.91 KB |
จำนวนการติดตั้ง | 10,000 |
เวอร์ชันปัจจุบัน | 0.1.7 |
อัปเดตครั้งล่าสุด | 2019-04-07 |
วันที่เผยแพร่ | 2019-04-06 |
คะแนน | 2.92/5 รวมทั้งหมด 48 คะแนน |
ผู้พัฒนา | neea.dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://www.sneeak.com/sitemap-generator |
ภาษาที่รองรับ | en,en-GB,en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDesc__", "version": "0.1.7", "version_name": "0.1.7", "manifest_version": 2, "default_locale": "en", "incognito": "not_allowed", "minimum_chrome_version": "46", "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/hcnjemngcihnhncobgdgkkfkhmleapah", "permissions": [ "activeTab", "webRequest", "webRequestBlocking", "system.display" ], "content_security_policy": "script-src 'self' 'sha256-rwQFR+Lqw7LzDK8rVQATBE+3CIpTqJlKlhIbusXISKE=' https:\/\/www.google-analytics.com; object-src 'self'", "optional_permissions": [ "downloads", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "128": "icons\/128x128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_icon": { "16": "icons\/16x16.png", "24": "icons\/24x24.png", "32": "icons\/32x32.png" }, "default_title": "__MSG_appShortName__" } } |