Duplicate Content
Duplicate all the content of the current page
ما هو Duplicate Content؟
Duplicate Content هو إضافة Chrome تم تطويرها بواسطة Martijn Nieuwenhuizen، والميزة الرئيسية لها هي "Duplicate all the content of the current page".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Duplicate Content
قم بتنزيل ملفات الامتداد Duplicate Content بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Duplicate all the content on a page to check if your design/website can handle it.
معلومات أساسية عن التمديد
الاسم | Duplicate Content |
ID | lelfnogjdcdgannnoddmgepkajiebpdg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/duplicate-content/lelfnogjdcdgannnoddmgepkajiebpdg |
الوصف | Duplicate all the content of the current page |
حجم الملف | 504 KB |
عدد التثبيتات | 122 |
النسخة الحالية | 0.0.2 |
آخر تحديث | 2017-10-06 |
تاريخ النشر | 2017-10-06 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Martijn Nieuwenhuizen |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Duplicate Content", "description": "Duplicate all the content of the current page", "version": "0.0.2", "browser_action": { "default_icon": "128.png", "default_title": "Duplicate text" }, "icons": { "19": "19.png", "48": "48.png", "128": "128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "tabs" ] } |