Oh Hell No

An extension that modifes the 'Skills & Expertise' section of LinkedIn to allow one to rebuke the person's claims.

Что такое Oh Hell No?

Oh Hell No - это расширение Chrome, разработанное jrmiller84, и его основная функция - "An extension that modifes the 'Skills & Expertise' section of LinkedIn to allow one to rebuke the person's claims.".

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

screenshot

Скачать файл CRX расширения Oh Hell No

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

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

                        Based on an idea from Episode 56 of Mike Monteiro's "Let's Make Mistakes" podcast. Adds an "Oh hell no" button to the "Skills and Expertise" section of people's LinkedIn profiles.                    

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

Название Oh Hell No Oh Hell No
ID hdlafmkekdmkeeifidploilceehjbikg
Официальный URL https://chrome.google.com/webstore/detail/oh-hell-no/hdlafmkekdmkeeifidploilceehjbikg
Описание An extension that modifes the 'Skills & Expertise' section of LinkedIn to allow one to rebuke the person's claims.
Размер файла 56.42 KB
Количество установок 19
Текущая Версия 1.0
Последнее Обновление 2012-07-18
Дата публикации 2012-07-18
Рейтинг 5.00/5 Всего 1 оценок
Разработчик jrmiller84
Тип оплаты free
Официальный сайт расширения https://github.com/BitDestroyer/Oh-Hell-No
URL страницы помощи https://github.com/BitDestroyer/Oh-Hell-No
Поддерживаемые языки en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Oh Hell No",
    "version": "1.0",
    "manifest_version": 2,
    "description": "An extension that modifes the 'Skills & Expertise' section of LinkedIn to allow one to rebuke the person's claims.",
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "notifications",
        "tabs",
        "http:\/\/www.linkedin.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.linkedin.com\/profile\/view*"
            ],
            "css": [
                "css\/toast.css"
            ],
            "js": [
                "scripts\/jquery-1.7.2.min.js",
                "scripts\/parse-1.0.9.min.js",
                "scripts\/jquery.toast.min.js",
                "scripts\/ohhellno.min.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*"
    ]
}