Yad2 Copy Link
This extension is used to copy an add link without having to use yad2 'send to friend' mechanism
Vad är Yad2 Copy Link?
Yad2 Copy Link är en Chrome-tillägg utvecklad av Eitam Doodai, och dess huvudfunktion är "This extension is used to copy an add link without having to use yad2 'send to friend' mechanism".
Tilläggsskärmbilder
Ladda ner Yad2 Copy Link-förlängningens CRX-fil
Ladda ner Yad2 Copy Link-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Allow copying a link to a specific ad directly into your clipboard. Just click the new icon introduced in each ad.
Grundläggande Information om Tillägg
Namn | |
ID | mhgklplfnkeklclkemlgdogcmccpcdnn |
Officiell webbadress | https://chrome.google.com/webstore/detail/yad2-copy-link/mhgklplfnkeklclkemlgdogcmccpcdnn |
Beskrivning | This extension is used to copy an add link without having to use yad2 'send to friend' mechanism |
Filstorlek | 83.65 KB |
Antal Installationer | 279 |
Aktuell Version | 1.2 |
Senast Uppdaterad | 2013-10-31 |
Publiceringsdatum | 2013-10-31 |
Betyg | 3.00/5 Totalt 2 Betyg |
Utvecklare | Eitam Doodai |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |