Oh Hell No

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

Vad är Oh Hell No?

Oh Hell No är en Chrome-tillägg utvecklad av jrmiller84, och dess huvudfunktion är "An extension that modifes the 'Skills & Expertise' section of LinkedIn to allow one to rebuke the person's claims.".

Tilläggsskärmbilder

screenshot

Ladda ner Oh Hell No-förlängningens CRX-fil

Ladda ner Oh Hell No-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Oh Hell No Oh Hell No
ID hdlafmkekdmkeeifidploilceehjbikg
Officiell webbadress https://chrome.google.com/webstore/detail/oh-hell-no/hdlafmkekdmkeeifidploilceehjbikg
Beskrivning An extension that modifes the 'Skills & Expertise' section of LinkedIn to allow one to rebuke the person's claims.
Filstorlek 56.42 KB
Antal Installationer 19
Aktuell Version 1.0
Senast Uppdaterad 2012-07-18
Publiceringsdatum 2012-07-18
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare jrmiller84
Betalningssätt free
Tilläggswebbplats https://github.com/BitDestroyer/Oh-Hell-No
Hjälpsida URL https://github.com/BitDestroyer/Oh-Hell-No
Stödda Språk 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\/*"
    ]
}