Extract Headings
Create an outline of your current page
Extract Headings란 무엇입니까?
Extract Headings은(는) meruri에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create an outline of your current page"입니다.
확장 프로그램 스크린샷
Extract Headings 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
source code: https://github.com/himerumeru/extract-headings
확장 프로그램 기본 정보
이름 | |
ID | ioapcagfihhgfgkadndilpepggjdgajp |
공식 URL | https://chromewebstore.google.com/detail/extract-headings/ioapcagfihhgfgkadndilpepggjdgajp |
설명 | Create an outline of your current page |
파일 크기 | 7.06 KB |
설치 횟수 | 120 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2016-07-03 |
출시 날짜 | 2016-07-03 |
개발자 | meruri |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/himerumeru/extract-headings |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Extract Headings", "description": "Create an outline of your current page", "version": "0.0.1", "icons": { "128": "icon.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+H", "mac": "Command+Shift+H", "windows": "Ctrl+Shift+H" } } }, "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/common.js" ], "run_at": "document_end" } ], "permissions": [ "tabs", "https:\/\/*\/*", "http:\/\/*\/*", "storage" ] } |