Extract Headings
Create an outline of your current page
Extract Headings là gì?
Extract Headings là một tiện ích mở rộng Chrome được phát triển bởi meruri, và tính năng chính của nó là "Create an outline of your current page".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Extract Headings
Tải xuống các tệp mở rộng Extract Headings dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
source code: https://github.com/himerumeru/extract-headings
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ioapcagfihhgfgkadndilpepggjdgajp |
URL Chính Thức | https://chromewebstore.google.com/detail/extract-headings/ioapcagfihhgfgkadndilpepggjdgajp |
Mô tả | Create an outline of your current page |
Kích Thước Tệp | 7.06 KB |
Số Lần Cài Đặt | 120 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2016-07-03 |
Ngày Phát Hành | 2016-07-03 |
Nhà Phát Triển | meruri |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/himerumeru/extract-headings |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |