Remove Citations

Remove the citations found on Wikipedia pages

What is Remove Citations?

Remove Citations is a Chrome extension developed by https://mileung.com, and its main feature is "Remove the citations found on Wikipedia pages".

Extension Screenshots

screenshot

Download Remove Citations Extension CRX File

Download Remove Citations 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

                        This simple Chrome Extension removes the citations found on Wikipedia articles.                    

Extension Basic Information

Name Remove Citations Remove Citations
ID ojmmohmckbjmbpjpdohkfmhnkfedbofp
Official URL https://chromewebstore.google.com/detail/remove-citations/ojmmohmckbjmbpjpdohkfmhnkfedbofp
Description Remove the citations found on Wikipedia pages
File Size 20.74 KB
Installation Count 1,098
Current Version 1.3
Last Updated 2018-01-08
Publish Date 2018-01-08
Rating 4.33/5 Total 9 Ratings
Developer https://mileung.com
Email [email protected]
Payment Type free
Extension Website http://mileung.com/
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Citations",
    "description": "Remove the citations found on Wikipedia pages",
    "version": "1.3",
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.wikipedia.org\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/*.wikipedia.org\/*",
        "https:\/\/ajax.googleapis.com\/"
    ]
}