Just Go Away

This extension quickly gets rid of webpage annoyances that cover content with a right-click.

Qu'est-ce que Just Go Away ?

Just Go Away est une extension Chrome développée par trophygeek, et sa fonction principale est "This extension quickly gets rid of webpage annoyances that cover content with a right-click.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Just Go Away

Téléchargez les fichiers d'extension Just Go Away au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Don't you hate it a webpage crowds out content with a huge floating menu or banner?

Now you can make many of these annoyances go away with a right-click.

 - Update (1.0.5): fix a bug from a Chrome behavior change.

After updating / installing extension, pages need to be reloaded before the extension works.

If you find a site that doesn't work, please post it here:
https://groups.google.com/forum/#!forum/just-go-away-extension                    

Informations de Base sur l'Extension

Nom Just Go Away Just Go Away
ID npgfhbcfcdgeeefdgphknhfncnjghdfk
URL Officiel https://chrome.google.com/webstore/detail/just-go-away/npgfhbcfcdgeeefdgphknhfncnjghdfk
Description This extension quickly gets rid of webpage annoyances that cover content with a right-click.
Taille du Fichier 466 KB
Nombre d'Installations 73
Version Actuelle 1.0.5
Dernière Mise à Jour 2015-05-21
Date de Publication 2015-05-21
Évaluation 5.00/5 Total 2 Évaluations
Développeur trophygeek
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://groups.google.com/forum/#!forum/just-go-away-extension
URL de la Page de Politique de Confidentialité https://trophygeek.com/privacy
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Just Go Away",
    "short_name": "justgoaway",
    "version": "1.0.5",
    "manifest_version": 2,
    "description": "This extension quickly gets rid of webpage annoyances that cover content with a right-click.",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/npgfhbcfcdgeeefdgphknhfncnjghdfk",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "options_page": "src\/options\/index.html",
    "permissions": [
        "tabs",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Stuff on page has been hidden. Click to reshow everything again.",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}