Remove Citations

Remove the citations found on Wikipedia pages

Cos'è Remove Citations?

Remove Citations è un'estensione di Chrome sviluppata da https://mileung.com, e la sua funzione principale è "Remove the citations found on Wikipedia pages".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Remove Citations

Scarica i file di estensione Remove Citations in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Remove Citations Remove Citations
ID ojmmohmckbjmbpjpdohkfmhnkfedbofp
URL Ufficiale https://chromewebstore.google.com/detail/remove-citations/ojmmohmckbjmbpjpdohkfmhnkfedbofp
Descrizione Remove the citations found on Wikipedia pages
Dimensione del File 20.74 KB
Conteggio Installazioni 1,098
Versione Corrente 1.3
Ultimo Aggiornamento 2018-01-08
Data di Pubblicazione 2018-01-08
Valutazione 4.33/5 Totale 9 Valutazioni
Sviluppatore https://mileung.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://mileung.com/
Lingue Supportate 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\/"
    ]
}