Copy HTML
Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.
ما هو Copy HTML؟
Copy HTML هو إضافة Chrome تم تطويرها بواسطة Justin Mahar، والميزة الرئيسية لها هي "Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Copy HTML
قم بتنزيل ملفات الامتداد Copy HTML بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Button method: 1. Click the extension icon 2. Click "Copy HTML" button 3. HTML is copied to clipboard Keyboard shortcut method: 1. Click the page 2. Press the keyboard shortcut: Ctrl+Shift+Alt+C 3. HTML is copied to clipboard Quick, simple, and easy!
معلومات أساسية عن التمديد
الاسم | Copy HTML |
ID | indfogjkdbmkihaohndcnkoaheopbhjf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/copy-html/indfogjkdbmkihaohndcnkoaheopbhjf |
الوصف | Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut. |
حجم الملف | 112 KB |
عدد التثبيتات | 79 |
النسخة الحالية | 2.0.2 |
آخر تحديث | 2023-10-23 |
تاريخ النشر | 2023-09-14 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Justin Mahar |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/justinmahar/chrome-copy-html |
عنوان صفحة سياسة الخصوصية | https://justinmahar.com/privacy |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy HTML", "description": "Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.", "version": "2.0.2", "manifest_version": 3, "content_scripts": [ { "js": [ "src\/_js\/content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "action": { "default_popup": "src\/popup\/popup.html", "default_icon": "images\/icon-512.png" }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png", "256": "images\/icon-256.png", "512": "images\/icon-512.png" } } |