Naver Blog Extension
Naver Blog Extension
Naver Blog Extensionとは何ですか?
Naver Blog Extensionはrittorittoによって開発されたChromeの拡張機能で、その主な機能は「Naver Blog Extension」です。
拡張機能のスクリーンショット
Naver Blog Extension拡張機能のCRXファイルをダウンロード
Naver Blog Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
네이버 블로그 확장프로그램 - 포스팅을 읽는 시간, 본문 글자 수, 본문 전체 길이를 측정해서 알려줍니다.
---------------------------------------------------------------------------------------------------------
이 확장 프로그램은 Naver에서 공식으로 제작한 것이 아닌 개인에 의해 만들어진 프로그램입니다.
오해 없으시길 바랍니다. 拡張機能の基本情報
| 名前 | |
| ID | mlhcnnjbhkkhjmphijiloijemnbjplnk |
| 公式URL | https://chromewebstore.google.com/detail/naver-blog-extension/mlhcnnjbhkkhjmphijiloijemnbjplnk |
| 説明 | Naver Blog Extension |
| ファイルサイズ | 9.41 KB |
| インストール数 | 136 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2022-12-06 |
| 公開日 | 2022-11-29 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | rittoritto |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://illustudio.co.kr |
| ヘルプページのURL | https://blog.illustudio.co.kr |
| 対応言語 | ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Naver Blog Extension",
"version": "1.0",
"description": "Naver Blog Extension",
"icons": {
"16": "static\/icon.png",
"48": "static\/icon.png",
"128": "static\/icon.png"
},
"action": {
"default_icons": {
"16": "static\/icon.png",
"48": "static\/icon.png",
"128": "static\/icon.png"
},
"default_title": "Naver Blog Extension",
"default_popup": "index.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/blog.naver.com\/*"
],
"exclude": [
"https:\/\/blog.naver.com\/*?Redirect=Write"
],
"all_frames": true,
"js": [
"contentScript.js"
],
"css": [
"static\/content.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"static\/content.css"
],
"matches": [
"https:\/\/blog.naver.com\/*"
]
}
]
} | |