Remove Citations

Remove the citations found on Wikipedia pages

Remove Citations क्या है?

Remove Citations https://mileung.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove the citations found on Wikipedia pages"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Remove Citations एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Remove Citations Remove Citations
ID ojmmohmckbjmbpjpdohkfmhnkfedbofp
आधिकारिक URL https://chromewebstore.google.com/detail/remove-citations/ojmmohmckbjmbpjpdohkfmhnkfedbofp
विवरण Remove the citations found on Wikipedia pages
फ़ाइल का आकार 20.74 KB
स्थापना संख्या 1,098
वर्तमान संस्करण 1.3
अंतिम अपडेट 2018-01-08
प्रकाशन तिथि 2018-01-08
रेटिंग 4.33/5 कुल 9 रेटिंग्स
डेवलपर https://mileung.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://mileung.com/
समर्थित भाषाएँ 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\/"
    ]
}