Task Manager & Register for LinkedIn
Manage Tasks, Tags, Notes and Contacts of LinkedIn Connections
Что такое Task Manager & Register for LinkedIn?
Task Manager & Register for LinkedIn - это расширение Chrome, разработанное http://taskregister.com, и его основная функция - "Manage Tasks, Tags, Notes and Contacts of LinkedIn Connections".
Снимки экрана расширения
Скачать файл CRX расширения Task Manager & Register for LinkedIn
Скачайте файлы расширений Task Manager & Register for LinkedIn в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Task Register Chrome Extension for LinkedIn
The Task Register App enables users to add, manage, and view tasks, notes, contact details and tags against a LinkedIn profile they visit. Simply look up a profile on LinkedIn and it will appear on the side panel of the app for you to easily add the details for that LinkedIn Profile.
Following are the main actions a user can take against a LinkedIn Profile:
Tasks - Add tasks, schedule them, and mark them as completed when done. Easily look up what tasks are pending and what are completed.
Notes - Add important notes and refer back as needed.
Contact Details - Add one-or-more phone numbers and email addresses.
Tags - Add appropriate tags to group LinkedIn profiles.
User Dashboard - Quickly view open and closed tasks, contacts, and tags.
---------------------------------------------------------------------
By using this extension, you agree to the Task Register Terms & Conditions available at https://www.taskregister.com/terms-of-service
Disclaimer:
This extension uses Google Analytics to collect extension usage statistics to help improve user experience. If you want to opt-out of Google Analytics tracking, please visit http://tools.google.com/dlpage/gaoptout or you can set up a filter in Adblock Plus or similar ad blocker tools like AdBlock, uBlock or Adblock Pro. Основная информация о расширении
| Название | |
| ID | lhnljoibfgpbefomnacfcabjpfcihdpb |
| Официальный URL | https://chrome.google.com/webstore/detail/task-manager-register-for/lhnljoibfgpbefomnacfcabjpfcihdpb |
| Описание | Manage Tasks, Tags, Notes and Contacts of LinkedIn Connections |
| Размер файла | 2.78 MB |
| Количество установок | 235 |
| Текущая Версия | 1.5.35 |
| Последнее Обновление | 2021-02-16 |
| Дата публикации | 2020-04-12 |
| Рейтинг | 5.00/5 Всего 6 оценок |
| Разработчик | http://taskregister.com |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы политики конфиденциальности | https://www.taskregister.com/privacy-policy |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Task Manager & Register for LinkedIn",
"description": "Manage Tasks, Tags, Notes and Contacts of LinkedIn Connections",
"version": "1.5.35",
"content_scripts": [
{
"matches": [
"http:\/\/www.linkedin.com\/*",
"https:\/\/www.linkedin.com\/*"
],
"js": [
"assets\/content.js"
],
"run_at": "document_end",
"persistent": false
}
],
"browser_action": {
"default_icon": "assets\/icon.png",
"default_title": "Task Manager & Register for LinkedIn",
"default_popup": "assets\/browser_action\/popup.html"
},
"icons": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"permissions": [
"cookies",
"storage",
"identity",
"activeTab",
"tabs",
"declarativeContent"
],
"background": {
"scripts": [
"assets\/background.js"
],
"persistent": false
},
"content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/apis.google.com; object-src 'self'; ",
"web_accessible_resources": [
"assets\/icons\/*",
"assets\/images\/*",
"index.html"
],
"oauth2": {
"client_id": "219265373150-q6u74c3fg0m0q5vr1ffhrctmeel4kmr1.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/userinfo.email",
"https:\/\/www.googleapis.com\/auth\/userinfo.profile"
]
}
} | |