Unclosed tabs
Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you.
Что такое Unclosed tabs?
Unclosed tabs - это расширение Chrome, разработанное Michael Anx, и его основная функция - "Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you.".
Снимки экрана расширения
Скачать файл CRX расширения Unclosed tabs
Скачайте файлы расширений Unclosed tabs в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you.
Основная информация о расширении
Название | Unclosed tabs |
ID | pnndppofhelodlbmmdicmbhnppanheca |
Официальный URL | https://chromewebstore.google.com/detail/unclosed-tabs/pnndppofhelodlbmmdicmbhnppanheca |
Описание | Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you. |
Размер файла | 159 KB |
Количество установок | 37 |
Текущая Версия | 0.0.4 |
Последнее Обновление | 2017-09-25 |
Дата публикации | 2017-09-25 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Michael Anx |
Тип оплаты | free |
Поддерживаемые языки | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "version": "0.0.4", "default_locale": "en", "description": "__MSG_extDiscrption__", "background": { "page": "background.html" }, "icons": { "48": "icon.png", "128": "icon-128.png" }, "options_page": "options.html", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "__MSG_extName__" }, "permissions": [ "tabs", "unlimitedStorage", "chrome:\/\/favicon\/", "webNavigation", "webRequest", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*", "background" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js", "js\/init.js" ], "run_at": "document_start", "all_frames": true }, { "js": [ "js\/support\/ext.js", "js\/support\/support.js" ], "run_at": "document_start", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true, "exclude_globs": [] } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |