Task Manager & Register for LinkedIn
Manage Tasks, Tags, Notes and Contacts of LinkedIn Connections
Was ist Task Manager & Register for LinkedIn?
Task Manager & Register for LinkedIn ist eine Chrome-Erweiterung, die von http://taskregister.com entwickelt wurde, und ihr Hauptmerkmal ist "Manage Tasks, Tags, Notes and Contacts of LinkedIn Connections".
Erweiterungsscreenshots
Task Manager & Register for LinkedIn-Erweiterungs-CRX-Datei herunterladen
Laden Sie Task Manager & Register for LinkedIn-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lhnljoibfgpbefomnacfcabjpfcihdpb |
| Offizielle URL | https://chrome.google.com/webstore/detail/task-manager-register-for/lhnljoibfgpbefomnacfcabjpfcihdpb |
| Beschreibung | Manage Tasks, Tags, Notes and Contacts of LinkedIn Connections |
| Dateigröße | 2.78 MB |
| Installationsanzahl | 235 |
| Aktuelle Version | 1.5.35 |
| Letztes Update | 2021-02-16 |
| Veröffentlichungsdatum | 2020-04-12 |
| Bewertung | 5.00/5 Insgesamt 6 Bewertungen |
| Entwickler | http://taskregister.com |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://www.taskregister.com/privacy-policy |
| Unterstützte Sprachen | 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"
]
}
} | |