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 |
| 官方網址 | 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 |
| 電子郵箱 | [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\/*"
]
}
]
} | |