Wikipedia Copy

Copy pure text from Wikipedia!

What is Wikipedia Copy?

Wikipedia Copy is a Chrome extension developed by n3nikita, and its main feature is "Copy pure text from Wikipedia!".

Extension Screenshots

screenshot
screenshot

Download Wikipedia Copy Extension CRX File

Download Wikipedia Copy 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

                        With the help of this extension you can copy pure text from Wikipedia, without tables, references and images. You can choose, which items you want to remove. You can also prepare document for print.                    

Extension Basic Information

Name Wikipedia Copy Wikipedia Copy
ID oepcbomikanldmhhldjcbknfdohmgeng
Official URL https://chromewebstore.google.com/detail/wikipedia-copy/oepcbomikanldmhhldjcbknfdohmgeng
Description Copy pure text from Wikipedia!
File Size 29.69 KB
Installation Count 2,395
Current Version 1.0.1
Last Updated 2021-01-11
Publish Date 2018-11-10
Rating 4.44/5 Total 9 Ratings
Developer n3nikita
Email [email protected]
Payment Type free
Extension Website https://github.com/n3nikita/WikiCopy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wikipedia Copy",
    "version": "1.0.1",
    "description": "Copy pure text from Wikipedia!",
    "icons": {
        "128": "img\/wiki128.png",
        "64": "img\/wiki64.png",
        "48": "img\/wiki48.png",
        "16": "img\/wiki16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.wikipedia.org\/*",
                "https:\/\/*.wikipedia.org\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "img\/wiki16.png",
        "default_popup": "popup\/popup.html",
        "default_title": "Wikipedia Copy"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "MacCtrl+Shift+E"
            },
            "description": "Open extension menu."
        }
    }
}