Linkedin Endorser

This Chrome extension will help you to endorse all the skills in one click.

Что такое Linkedin Endorser?

Linkedin Endorser - это расширение Chrome, разработанное swissashley, и его основная функция - "This Chrome extension will help you to endorse all the skills in one click.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Linkedin Endorser

Скачайте файлы расширений Linkedin Endorser в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This Chrome Extension can let you endorse your friend just in one click!
With this extension, users will be able to:

- [ ] Endorse all the skills for your friend.
- [ ] Has an option to create a skill list you want to endorse for your friend.                    

Основная информация о расширении

Название Linkedin Endorser Linkedin Endorser
ID mhakkhaadpkehkiiiimheegdbchfmlbi
Официальный URL https://chromewebstore.google.com/detail/linkedin-endorser/mhakkhaadpkehkiiiimheegdbchfmlbi
Описание This Chrome extension will help you to endorse all the skills in one click.
Размер файла 300 KB
Количество установок 33
Текущая Версия 1.2
Последнее Обновление 2016-09-22
Дата публикации 2016-09-22
Разработчик swissashley
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/swissashley/chrome-ext-linkedinEndorser
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Linkedin Endorser",
    "description": "This Chrome extension will help you to endorse all the skills in one click.",
    "version": "1.2",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "page_action": {
        "default_icon": "icons\/icon38.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.linkedin.com\/in\/*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "myscript.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "https:\/\/www.linkedin.com\/*"
    ]
}