Duplicate Content
Duplicate all the content of the current page
What is Duplicate Content?
Duplicate Content is a Chrome extension developed by Martijn Nieuwenhuizen, and its main feature is "Duplicate all the content of the current page".
Extension Screenshots
Download Duplicate Content Extension CRX File
Download Duplicate Content extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Duplicate all the content on a page to check if your design/website can handle it.
Extension Basic Information
Name | Duplicate Content |
ID | lelfnogjdcdgannnoddmgepkajiebpdg |
Official URL | https://chromewebstore.google.com/detail/duplicate-content/lelfnogjdcdgannnoddmgepkajiebpdg |
Description | Duplicate all the content of the current page |
File Size | 504 KB |
Installation Count | 122 |
Current Version | 0.0.2 |
Last Updated | 2017-10-06 |
Publish Date | 2017-10-06 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Martijn Nieuwenhuizen |
Payment Type | free |
Supported Languages | 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" ] } |