Copy DOM Content
This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.
ما هو Copy DOM Content؟
Copy DOM Content هو إضافة Chrome تم تطويرها بواسطة QoSMicro.com، والميزة الرئيسية لها هي "This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Copy DOM Content
قم بتنزيل ملفات الامتداد Copy DOM Content بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements. Anfound will be converted to elements with the class "original_iframe" as long as they are from the same domain.
معلومات أساسية عن التمديد
الاسم | |
ID | dmdbhcacalljmfmilnhmnhihdfoamdap |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/copy-dom-content/dmdbhcacalljmfmilnhmnhihdfoamdap |
الوصف | This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements. |
حجم الملف | 13.8 KB |
عدد التثبيتات | 803 |
النسخة الحالية | 1.1 |
آخر تحديث | 2016-04-24 |
تاريخ النشر | 2016-04-24 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | QoSMicro.com |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Jose Manuel Sanchez", "homepage_url": "http:\/\/qosmicro.com\/", "name": "Copy DOM Content", "short_name": "Copy DOM", "description": "This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.", "version": "1.1", "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_popup": "index.html", "default_title": "Copy DOM Content" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab" ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |