Remove Citations

Remove the citations found on Wikipedia pages

Wat is Remove Citations?

Remove Citations is een Chrome-extensie ontwikkeld door https://mileung.com, en de belangrijkste functie is "Remove the citations found on Wikipedia pages".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Remove Citations

Download Remove Citations-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Remove Citations Remove Citations
ID ojmmohmckbjmbpjpdohkfmhnkfedbofp
Officiële URL https://chromewebstore.google.com/detail/remove-citations/ojmmohmckbjmbpjpdohkfmhnkfedbofp
Beschrijving Remove the citations found on Wikipedia pages
Bestandsgrootte 20.74 KB
Aantal Installaties 1,098
Huidige Versie 1.3
Laatst Bijgewerkt 2018-01-08
Publicatiedatum 2018-01-08
Beoordeling 4.33/5 Totaal 9 Beoordelingen
Ontwikkelaar https://mileung.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://mileung.com/
Ondersteunde Talen 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\/"
    ]
}