Instapaper Reloaded
Some tweaks to instapaper.com
Что такое Instapaper Reloaded?
Instapaper Reloaded - это расширение Chrome, разработанное Darrin Holst, и его основная функция - "Some tweaks to instapaper.com".
Снимки экрана расширения
Скачать файл CRX расширения Instapaper Reloaded
Скачайте файлы расширений Instapaper Reloaded в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension tweaks the layout of instapaper.com and adds some keyboard shortcuts. Press ? on instapaper.com for all the shortcuts.
Press Ctrl + i on any other web site to add an article to your instapaper account.
07-03-2014:
Time permitted to get it mostly working with the new site design. #ymmv
08-30-2013:
the site redesign broke almost everything. Disabling stuff for now. I'll bring it back as time permits
03-24-2013:
added ability to archive from the article text view
09-13-2012:
added option to reverse the sort order of unread articles Основная информация о расширении
| Название | |
| ID | jhcgodhomejkefepnpccebphcpnpdbni |
| Официальный URL | https://chromewebstore.google.com/detail/instapaper-reloaded/jhcgodhomejkefepnpccebphcpnpdbni |
| Описание | Some tweaks to instapaper.com |
| Размер файла | 51.43 KB |
| Количество установок | 123 |
| Текущая Версия | 3.0.1 |
| Последнее Обновление | 2014-07-13 |
| Дата публикации | 2014-07-13 |
| Рейтинг | 4.00/5 Всего 1 оценок |
| Разработчик | Darrin Holst |
| Тип оплаты | free |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Instapaper Reloaded",
"version": "3.0.1",
"description": "Some tweaks to instapaper.com",
"permissions": [
"https:\/\/www.instapaper.com\/"
],
"icons": {
"16": "img\/icon16.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"*:\/\/*.instapaper.com\/*"
],
"css": [
"css\/reloaded.css"
],
"js": [
"javascripts\/jquery.js",
"javascripts\/jquery.hotkeys.js",
"javascripts\/scroller.js",
"javascripts\/reloaded.js"
]
},
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"javascripts\/opener.js"
]
}
],
"background": {
"scripts": [
"javascripts\/background.js"
]
},
"options_page": "html\/options.html"
} | |