One Piece Drop
Instantly notifies you when a new One Piece chapter is released
Что такое One Piece Drop?
One Piece Drop - это расширение Chrome, разработанное mingli434, и его основная функция - "Instantly notifies you when a new One Piece chapter is released".
Скачать файл CRX расширения One Piece Drop
Скачайте файлы расширений One Piece Drop в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
One Piece Drop eliminates the need to refresh Jaimini's box every 5 seconds when waiting for the new One Piece chapter to drop. Get notified instantly the moment the chapter is uploaded! Основная информация о расширении
| Название | |
| ID | fgkgokolnijjkifnbmplgkfpbfejenlp |
| Официальный URL | https://chrome.google.com/webstore/detail/fgkgokolnijjkifnbmplgkfpbfejenlp |
| Описание | Instantly notifies you when a new One Piece chapter is released |
| Размер файла | 17.41 KB |
| Количество установок | 142 |
| Текущая Версия | 1.2 |
| Последнее Обновление | 2018-07-19 |
| Дата публикации | 2018-07-19 |
| Разработчик | mingli434 |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "One Piece Drop",
"version": "1.2",
"description": "Instantly notifies you when a new One Piece chapter is released",
"manifest_version": 2,
"icons": {
"128": "icon_128.png"
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/www.jaiminisbox.com\/reader\/"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"permissions": [
"notifications"
]
} | |