SEO-HTML
This extension is to inspect the HTML source of a website and to display SEO relevant information.
SEO-HTMLとは何ですか?
SEO-HTMLはDaniel Lucksによって開発されたChromeの拡張機能で、その主な機能は「This extension is to inspect the HTML source of a website and to display SEO relevant information.」です。
拡張機能のスクリーンショット
SEO-HTML拡張機能のCRXファイルをダウンロード
SEO-HTML拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension is to analyze the HTML source code (without DOM modifications done by Javascript) of a website and to display SEO relevant information. I know, there are many extension available like this, but I think the advantage of this one is to display the important information compact in a quick an easy way. Just click the icon, and a little popup shows up.
This is just a first version of this extension, so feedback is very welcome!
Icon by http://designmodo.com 拡張機能の基本情報
| 名前 | |
| ID | lgjdkielngenkbnfmioemjcldnhlcpkn |
| 公式URL | https://chromewebstore.google.com/detail/seo-html/lgjdkielngenkbnfmioemjcldnhlcpkn |
| 説明 | This extension is to inspect the HTML source of a website and to display SEO relevant information. |
| ファイルサイズ | 16.92 KB |
| インストール数 | 2,742 |
| 現在のバージョン | 0.3.2 |
| 最終更新日 | 2014-01-06 |
| 公開日 | 2014-01-06 |
| 評価 | 4.00/5 合計 10 レビュー |
| 開発者 | Daniel Lucks |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "SEO-HTML",
"description": "This extension is to inspect the HTML source of a website and to display SEO relevant information.",
"short_name": "SEO-HTML",
"version": "0.3.2",
"author": "Daniel Lucks",
"permissions": [
"tabs"
],
"content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"browser_action": {
"default_icon": "images\/icon-24.png",
"default_popup": "popup\/index.html"
},
"icons": {
"16": "images\/icon-16.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
}
} | |