Remove Citations

Remove the citations found on Wikipedia pages

Hvad er Remove Citations?

Remove Citations er en Chrome-udvidelse udviklet af https://mileung.com, og dens hovedfunktion er "Remove the citations found on Wikipedia pages".

Udvidelsesskærmbilleder

screenshot

Download Remove Citations-udvidelses-CRX-fil

Download Remove Citations-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Remove Citations Remove Citations
ID ojmmohmckbjmbpjpdohkfmhnkfedbofp
Officiel URL https://chromewebstore.google.com/detail/remove-citations/ojmmohmckbjmbpjpdohkfmhnkfedbofp
Beskrivelse Remove the citations found on Wikipedia pages
Filstørrelse 20.74 KB
Antal Installationer 1,098
Nuværende Version 1.3
Senest Opdateret 2018-01-08
Udgivelsesdato 2018-01-08
Bedømmelse 4.33/5 Samlet 9 Bedømmelser
Udvikler https://mileung.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://mileung.com/
Understøttede Sprog 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\/"
    ]
}