Extract Headings
Create an outline of your current page
Что такое Extract Headings?
Extract Headings - это расширение Chrome, разработанное meruri, и его основная функция - "Create an outline of your current page".
Снимки экрана расширения
Скачать файл CRX расширения Extract Headings
Скачайте файлы расширений Extract Headings в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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"
]
} | |