Remove Citations

Remove the citations found on Wikipedia pages

Was ist Remove Citations?

Remove Citations ist eine Chrome-Erweiterung, die von https://mileung.com entwickelt wurde, und ihr Hauptmerkmal ist "Remove the citations found on Wikipedia pages".

Erweiterungsscreenshots

screenshot

Remove Citations-Erweiterungs-CRX-Datei herunterladen

Laden Sie Remove Citations-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Remove Citations Remove Citations
ID ojmmohmckbjmbpjpdohkfmhnkfedbofp
Offizielle URL https://chromewebstore.google.com/detail/remove-citations/ojmmohmckbjmbpjpdohkfmhnkfedbofp
Beschreibung Remove the citations found on Wikipedia pages
Dateigröße 20.74 KB
Installationsanzahl 1,098
Aktuelle Version 1.3
Letztes Update 2018-01-08
Veröffentlichungsdatum 2018-01-08
Bewertung 4.33/5 Insgesamt 9 Bewertungen
Entwickler https://mileung.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://mileung.com/
Unterstützte Sprachen 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\/"
    ]
}