Yad2 Copy Link
This extension is used to copy an add link without having to use yad2 'send to friend' mechanism
Was ist Yad2 Copy Link?
Yad2 Copy Link ist eine Chrome-Erweiterung, die von Eitam Doodai entwickelt wurde, und ihr Hauptmerkmal ist "This extension is used to copy an add link without having to use yad2 'send to friend' mechanism".
Erweiterungsscreenshots
Yad2 Copy Link-Erweiterungs-CRX-Datei herunterladen
Laden Sie Yad2 Copy Link-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Allow copying a link to a specific ad directly into your clipboard. Just click the new icon introduced in each ad.
Grundlegende Informationen zur Erweiterung
Name | |
ID | mhgklplfnkeklclkemlgdogcmccpcdnn |
Offizielle URL | https://chrome.google.com/webstore/detail/yad2-copy-link/mhgklplfnkeklclkemlgdogcmccpcdnn |
Beschreibung | This extension is used to copy an add link without having to use yad2 'send to friend' mechanism |
Dateigröße | 83.65 KB |
Installationsanzahl | 279 |
Aktuelle Version | 1.2 |
Letztes Update | 2013-10-31 |
Veröffentlichungsdatum | 2013-10-31 |
Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
Entwickler | Eitam Doodai |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |