Add to Pinry
Pins images from current page to a Pinry installation.
Что такое Add to Pinry?
Add to Pinry - это расширение Chrome, разработанное lapo, и его основная функция - "Pins images from current page to a Pinry installation.".
Снимки экрана расширения
Скачать файл CRX расширения Add to Pinry
Скачайте файлы расширений Add to Pinry в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Add images easily to your own installation of Pinry!
(browser integration for official bookmarklet) Основная информация о расширении
| Название | |
| ID | jmhdcnmfkglikfjafdmdikoonedgijpa |
| Официальный URL | https://chromewebstore.google.com/detail/add-to-pinry/jmhdcnmfkglikfjafdmdikoonedgijpa |
| Описание | Pins images from current page to a Pinry installation. |
| Размер файла | 9.61 KB |
| Количество установок | 780 |
| Текущая Версия | 0.2.1 |
| Последнее Обновление | 2020-06-29 |
| Дата публикации | 2020-06-29 |
| Рейтинг | 4.00/5 Всего 3 оценок |
| Разработчик | lapo |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/lapo-luchini/browser-pinry |
| URL страницы помощи | https://github.com/lapo-luchini/browser-pinry/issues |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Add to Pinry",
"version": "0.2.1",
"description": "Pins images from current page to a Pinry installation.",
"manifest_version": 2,
"icons": {
"48": "ico-48.png",
"128": "ico-128.png"
},
"permissions": [
"contextMenus",
"activeTab",
"storage"
],
"browser_action": {
"default_icon": "ico-128.png",
"default_title": "Add to Pinry"
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options.html",
"browser_style": true,
"chrome_style": true
}
} | |