Skip to content

Commit

Permalink
Updated description to meet Google requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
folini committed Sep 14, 2021
1 parent 427b2cb commit f2fe896
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 16 deletions.
12 changes: 5 additions & 7 deletions GoogleWebStore.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,15 @@
## Description
> The following description must be in plain text without any formatting. The description is intended for copy & past to [Chrome Web Store Developer Dashboard](https://chrome.google.com/webstore/devconsole/).
A free and open-source Google Chrome Extension to analyze the elements that have an impact on the on-page SEO. The _Page Auditor for Technical SEO_ is a tool designed to perform an accurate Technical SEO Audit of any web page.
A Chrome Extension, based on open-source code, to analyze the elements of a web page that can impact the on-page SEO performance. "Page Auditor" can perform a technical SEO audit of any web page. It will checks and displays, in human-readable, well organized, reports, all the information from a web, including:

"Page Auditor for Technical SEO" will checks and displays, with human readable, well organized reports, all the information from a web page that could impact the on-page SEO, including:
* Structured Data. The report provides excellent visualization and detailed explanation to help understand the content of LD-JSON fields.

* Structured Data. The report provides great visualization and detailed explanation to help understand the content of LD-JSON fields.
* JavaScript code. The report scans the page and creates detailed reports explaining the purpose of each script included or embedded in the page, and it identifies the code that is tracking the page visitors or used to insert ads into the page. For each block of code, it will also provide links to the company behind it.

* JavaScript code. The report scan the page and creates detailed reports explaining the purpose of each JavaScript included or embedded in the page, it identifies the code that is tracking the page visitors, or that insert ads into the page. For each block of JavaScript it will also provide links to the company that owns and control the code.
* Meta Tags. This tool will look at all Meta Tags on the page and will group them by category. The meta tag report provides a detailed description and explanations for each type and links technical documentation.

* Meta Tags. This tool will look at all Meta Tags in the page and will group them by category. The meta tag report also provides detailed description and explanations for each category, and links to technical documentation.

* Robots.txt & Sitemap.xml. The content of there files is displayed in easy to read reports with the goal of making them easy to access and to analyze.
* Robots.txt & Sitemap.xml. The easy-to-read report displays the content of these files making this information accessible to everybody and easy to analyze.

## Graphic Assets

Expand Down
6 changes: 3 additions & 3 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
"manifest_version": 3,

"name": "Page Auditor for Technical SEO",
"description": "PageAuditor for Technical SEO is a Franco Folini project to analyze tracking codes, Structured Data, meta-tags, and more.",
"version": "1.08",
"description": "PageAuditor for Technical SEO is a project created by Franco Folini to analyze tracking codes, Structured Data, meta-tags, and more.",
"version": "1.09",
"icons": {
"256": "logos/Logo_256x256.png"
},
"content_scripts": [
{
"matches": ["https://*/*"],
"js": ["main.js"],
"run_at": "document_end"
"run_at": "document_idle"
}
],
"action": {
Expand Down
12 changes: 6 additions & 6 deletions src/sections/intro.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ const reporter = async (tabUrl: string, data: any): Promise<string> => {
report += new Card()
.open(``, `How to use Page Auditor for Technical SEO`, [], 'icon-how')
.add(
`Page Auditor shows the hidden parts of the HTML code of any web page.<br/>` +
`To test this Google Chrome Extension visit a popular page like:` +
`<i>Page Auditor</i> shows the snippets of code and tags included in the HTML code relevant for the on-page SEO of a web page.<br/>` +
`To test this Chrome Extension, visit a popular page like:` +
`<ul>` +
suggestedSites
.map(
Expand All @@ -33,15 +33,15 @@ const reporter = async (tabUrl: string, data: any): Promise<string> => {
)
.join('') +
`</ul>` +
`Once the page is loaded launch the <b>Page Auditor for Technical SEO</b> extension and check all the hidden content.`
`Once the browser has loaded the selected page, launch the Page Auditor for Technical SEO extension. Now you can access all reports and learn about what contributes to the SEO performance of the page.`
)
.close()

report += new Card()
.open(``, `Why Page Auditor`, [], 'icon-why')
.add(
`
<b>Page Auditor</b> is one of the best tool to analyze the technical features of a web page.
<b>Page Auditor</b> r is a professional tool for Digital Marketers. Even if you are not a marketing expert, you can use "Page Auditor" to learn about on-page technical SEO.
<br/>
<b>Page Auditor</b> can recognize ${scriptClasses.length.toFixed()} different types of JavaScript code injected into a web page.
Among the categories of JavaScript identified by <b>Page Auditor</b>:
Expand All @@ -60,9 +60,9 @@ const reporter = async (tabUrl: string, data: any): Promise<string> => {
.add(
`
<b>Page Auditor</b> is an open source project created by <a target="_new" href='https://www.linkedin.com/in/francofolini/'>Franco Folini</a>.
That means anybody is free to use, study, modify, and distribute this project for any purpose, within the limits set by the license.
That means anybody is free to use, study, modify, and distribute the source code of project for any purpose, within the limits set by the license.
<br/><br/>
<b>Page Auditor</b> is distributed with a <a target="_new" href='https://github.com/folini/Page-Auditor/blob/main/LICENSE.md'>BSD 3-Clause License</a>.
<b>Page Auditor</b> source code is distributed with a <a target="_new" href='https://github.com/folini/Page-Auditor/blob/main/LICENSE.md'>BSD 3-Clause License</a>.
<br/><br/>
The <b>Page Auditor</b> has been created using <a target="_new" href='https://www.typescriptlang.org/'>Typescript</a>. If you are not familiar with development, TypeScript is a superset of the famous JavaScript.
The project has been developed <a href='https://code.visualstudio.com/'>Visual Studio Code</a> and extensively tested using the
Expand Down

0 comments on commit f2fe896

Please sign in to comment.