Remove Citations

Remove the citations found on Wikipedia pages

Co to jest Remove Citations?

Remove Citations to rozszerzenie Chrome opracowane przez https://mileung.com, a jego główną funkcją jest „Remove the citations found on Wikipedia pages”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Remove Citations

Pobierz pliki rozszerzeń Remove Citations w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Remove Citations Remove Citations
ID ojmmohmckbjmbpjpdohkfmhnkfedbofp
Oficjalny URL https://chromewebstore.google.com/detail/remove-citations/ojmmohmckbjmbpjpdohkfmhnkfedbofp
Opis Remove the citations found on Wikipedia pages
Rozmiar pliku 20.74 KB
Liczba instalacji 1,098
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2018-01-08
Data Publikacji 2018-01-08
Ocena 4.33/5 Łącznie 9 Oceny
Deweloper https://mileung.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://mileung.com/
Obsługiwane Języki 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\/"
    ]
}