Remove Citations
Remove the citations found on Wikipedia pages
Что такое Remove Citations?
Remove Citations - это расширение Chrome, разработанное https://mileung.com, и его основная функция - "Remove the citations found on Wikipedia pages".
Снимки экрана расширения
Скачать файл CRX расширения Remove Citations
Скачайте файлы расширений Remove Citations в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        This simple Chrome Extension removes the citations found on Wikipedia articles.                     Основная информация о расширении
| Название |   |  
| 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\/"
    ]
}  |  |