Notes Kitty
The last note taking app you'll ever need.
Что такое Notes Kitty?
Notes Kitty - это расширение Chrome, разработанное Twelfth Hour, и его основная функция - "The last note taking app you'll ever need.".
Снимки экрана расширения
Скачать файл CRX расширения Notes Kitty
Скачайте файлы расширений Notes Kitty в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Want to make searching and organizing your queries easy? Our extension will open you the top links based on your query and not only that, you'll be able to remove all the advertisements and unnecessary data on the website by cleaning the website with the click of one button. We also provide additional features including dark mode and custom editable notes on the current link itself. One can even add notes and it will be stored as a pdf file. This will make the creation and organization of notes much easier.
Основная информация о расширении
Название | Notes Kitty |
ID | gmgfogccgeeimapbcgilfipbfenafbkp |
Официальный URL | https://chromewebstore.google.com/detail/notes-kitty/gmgfogccgeeimapbcgilfipbfenafbkp |
Описание | The last note taking app you'll ever need. |
Размер файла | 32.79 KB |
Количество установок | 39 |
Текущая Версия | 1.1 |
Последнее Обновление | 2020-01-28 |
Дата публикации | 2020-01-28 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Twelfth Hour |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notes Kitty", "short_name": "Notes Kitty", "version": "1.1", "description": "The last note taking app you'll ever need.", "permissions": [ "cookies", "contextMenus", "storage", "declarativeContent", "activeTab", "tabs", "https:\/\/duckduckgo.com\/*" ], "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com https:\/\/cdn.firebase.com https:\/\/*.firebaseio.com; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/duckduckgo.com\/*" ], "js": [ "src\/content.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "src\/background.js" ], "persistent": true }, "browser_action": { "default_popup": "popup.html" }, "manifest_version": 2 } |