PageExpand
Popup image. Batch download. Extend BBS. etc...
PageExpand란 무엇입니까?
PageExpand은(는) https://hakuhin.jp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Popup image. Batch download. Extend BBS. etc..."입니다.
확장 프로그램 스크린샷
PageExpand 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
----- Main function ----- ⚙️Popup image. ⚙️Batch download tool. ⚙️Extend anonymous BBS. (5ch, 2chan) ----- Sub function (Setting required) ----- ⚙️Expand thumbnail image. ⚙️Expand MediaPlayer. ⚙️Expand shortened URL. ⚙️Replace text to hyperlink. ⚙️Override Referer and UserAgent. (abolish in MV3) ⚙️Customize by JavaScript. (abolish in MV3) ----- About PageExpand ----- ⚙️Enrich legacy text-based sites. ----- Specification details ----- ⚙️https://hakuhin.jp/browser_extension/page_expand.html
확장 프로그램 기본 정보
이름 | PageExpand |
ID | bjnobgdfhefpilajplncgjjeopakpepc |
공식 URL | https://chromewebstore.google.com/detail/pageexpand/bjnobgdfhefpilajplncgjjeopakpepc |
설명 | Popup image. Batch download. Extend BBS. etc... |
파일 크기 | 412 KB |
설치 횟수 | 14,282 |
현재 버전 | 1.6.1 |
최근 업데이트 | 2023-11-19 |
출시 날짜 | 2019-11-19 |
평점 | 4.20/5 총 89 개의 평점 |
개발자 | https://hakuhin.jp |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://hakuhin.jp/browser_extension/page_expand.html |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "default_locale": "en", "name": "__MSG_extension_name__", "version": "1.6.1", "manifest_version": 2, "description": "__MSG_extension_description__", "author": "hakuhin", "icons": { "16": "icon16.png", "19": "icon19.png", "32": "icon32.png", "38": "icon38.png", "48": "icon48.png", "64": "icon64.png", "128": "icon128.png" }, "background": { "scripts": [ "PageExpand.js", "background.js" ], "persistent": true }, "content_scripts": [ { "all_frames": true, "js": [ "PageExpand.js", "content_scripts.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "match_about_blank": true, "run_at": "document_start" } ], "browser_action": { "default_icon": { "16": "icon16.png", "18": "icon18.png", "19": "icon19.png", "32": "icon32.png", "38": "icon38.png", "48": "icon48.png", "64": "icon64.png", "128": "icon128.png" }, "default_title": "__MSG_extension_name__", "default_popup": "popup.html" }, "sidebar_action": { "default_icon": { "16": "icon16.png", "19": "icon19.png", "32": "icon32.png", "38": "icon38.png", "48": "icon48.png", "64": "icon64.png", "128": "icon128.png" }, "default_title": "__MSG_extension_name__", "default_panel": "sidebar.html" }, "options_page": "options.html", "options_ui": { "page": "options.html", "open_in_tab": true }, "permissions": [ "tabs", "webRequest", "webRequestBlocking", "contextMenus", "storage", "clipboardWrite", "downloads", "downloads.shelf", "http:\/\/*\/", "https:\/\/*\/" ], "applications": { "gecko": { "id": "[email protected]" } } } |