Simple Outliner / 智能网页大纲
Simple Outliner / 自动生成网页大纲、目录,Support Inoreader and Feedly。
Simple Outliner / 智能网页大纲란 무엇입니까?
Simple Outliner / 智能网页大纲은(는) lcomplete에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple Outliner / 自动生成网页大纲、目录,Support Inoreader and Feedly。"입니다.
확장 프로그램 스크린샷
Simple Outliner / 智能网页大纲 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Displays a table of contents for every web page, making it easier to read/navigate long articles, documentations and online books.
## Features:
- 智能生成网页大纲,支持 Inoreader 和 Feedly。
- Accurate article/headings detection
- Clean user interface
- Highlight current heading
- Click to jump to heading
- Panel can be dragged to preferred position
- Support auto load option
- ✨ Support Inoreader and Feedly, it can track the article change, it's all automatic.
## Usage:
- Click browser button(or: Ctrl/Command+Shift+E) to toggle for current site
- You can set the auto load option without click the extension icon.
## Supported sites:
Any article page that uses HTML heading tags (H1, H2, H3...) properly, examples:
- Wikipedia.org
- Github.com
- npmjs.com
- inoreader.com
- feedly.com
(...and much more)
Local html files (in your hard drive) are also supported, you just need to enable it in extension settings.
## You can buy a coffee ❤ to the original maker.
https://www.buymeacoffee.com/fallenmax
Original ♥ by FallenMax
Modified ♥ by lcomplete
https://twitter.com/lcomplete_wild 확장 프로그램 기본 정보
| 이름 | |
| ID | ppdjhggfcaenclmimmdigbcglfoklgaf |
| 공식 URL | https://chromewebstore.google.com/detail/simple-outliner-%E6%99%BA%E8%83%BD%E7%BD%91%E9%A1%B5%E5%A4%A7%E7%BA%B2/ppdjhggfcaenclmimmdigbcglfoklgaf |
| 설명 | Simple Outliner / 自动生成网页大纲、目录,Support Inoreader and Feedly。 |
| 파일 크기 | 77.94 KB |
| 설치 횟수 | 1,776 |
| 현재 버전 | 0.7.3 |
| 최근 업데이트 | 2022-03-28 |
| 출시 날짜 | 2022-03-09 |
| 평점 | 4.80/5 총 5 개의 평점 |
| 개발자 | lcomplete |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 확장 프로그램 웹 사이트 | https://github.com/lcomplete/smart-toc |
| 도움말 페이지 URL | https://github.com/lcomplete/smart-toc |
| 개인정보 보호 정책 페이지 URL | https://codelc.com/privacy |
| 지원되는 언어 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Simple Outliner \/ \u667a\u80fd\u7f51\u9875\u5927\u7eb2",
"version": "0.7.3",
"description": "Simple Outliner \/ \u81ea\u52a8\u751f\u6210\u7f51\u9875\u5927\u7eb2\u3001\u76ee\u5f55\uff0cSupport Inoreader and Feedly\u3002",
"options_page": "options.html",
"action": {
"default_icon": "icon.png",
"default_title": "Simple Outliner \/ \u667a\u80fd\u7f51\u9875\u5927\u7eb2"
},
"icons": {
"16": "icon.png",
"128": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"toc.js"
],
"run_at": "document_end"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self';object-src 'self';script-src-elem 'self' 'unsafe-inline' https:\/\/platform.twitter.com https:\/\/syndication.twitter.com;"
},
"commands": {
"toggle": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"mac": "Command+Shift+E",
"chromeos": "Ctrl+Shift+E",
"linux": "Ctrl+Shift+E"
},
"description": "Load\/unload TOC"
},
"prev": {
"description": "Jump to previous heading"
},
"next": {
"description": "Jump to next heading"
}
},
"permissions": [
"activeTab",
"storage",
"contextMenus",
"scripting"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"author": "[email protected]"
} | |