Remove Citations

Remove the citations found on Wikipedia pages

Vad är Remove Citations?

Remove Citations är en Chrome-tillägg utvecklad av https://mileung.com, och dess huvudfunktion är "Remove the citations found on Wikipedia pages".

Tilläggsskärmbilder

screenshot

Ladda ner Remove Citations-förlängningens CRX-fil

Ladda ner Remove Citations-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Remove Citations Remove Citations
ID ojmmohmckbjmbpjpdohkfmhnkfedbofp
Officiell webbadress https://chromewebstore.google.com/detail/remove-citations/ojmmohmckbjmbpjpdohkfmhnkfedbofp
Beskrivning Remove the citations found on Wikipedia pages
Filstorlek 20.74 KB
Antal Installationer 1,098
Aktuell Version 1.3
Senast Uppdaterad 2018-01-08
Publiceringsdatum 2018-01-08
Betyg 4.33/5 Totalt 9 Betyg
Utvecklare https://mileung.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://mileung.com/
Stödda Språk 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\/"
    ]
}