Yad2 Copy Link
This extension is used to copy an add link without having to use yad2 'send to friend' mechanism
Что такое Yad2 Copy Link?
Yad2 Copy Link - это расширение Chrome, разработанное Eitam Doodai, и его основная функция - "This extension is used to copy an add link without having to use yad2 'send to friend' mechanism".
Снимки экрана расширения
Скачать файл CRX расширения Yad2 Copy Link
Скачайте файлы расширений Yad2 Copy Link в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Allow copying a link to a specific ad directly into your clipboard. Just click the new icon introduced in each ad.
Основная информация о расширении
Название | |
ID | mhgklplfnkeklclkemlgdogcmccpcdnn |
Официальный URL | https://chrome.google.com/webstore/detail/yad2-copy-link/mhgklplfnkeklclkemlgdogcmccpcdnn |
Описание | This extension is used to copy an add link without having to use yad2 'send to friend' mechanism |
Размер файла | 83.65 KB |
Количество установок | 279 |
Текущая Версия | 1.2 |
Последнее Обновление | 2013-10-31 |
Дата публикации | 2013-10-31 |
Рейтинг | 3.00/5 Всего 2 оценок |
Разработчик | Eitam Doodai |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Yad2 Copy Link", "description": "This extension is used to copy an add link without having to use yad2 'send to friend' mechanism", "author": "Eitam Doodai", "version": "1.2", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "http:\/\/www.yad2.co.il\/*", "clipboardWrite" ], "web_accessible_resources": [ "icon128.png" ], "optional_permissions": [ "clipboardWrite" ], "content_scripts": [ { "matches": [ "http:\/\/www.yad2.co.il\/*" ], "js": [ "jquery-2.0.2.js", "main.js", "humane.min.js" ], "css": [ "libnotify.css" ] } ] } |