Site Blockr

This extension hides links to, and all content from, the sites you want (alpha)

Qu'est-ce que Site Blockr ?

Site Blockr est une extension Chrome développée par ahallicks, et sa fonction principale est "This extension hides links to, and all content from, the sites you want (alpha)".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Site Blockr

Téléchargez les fichiers d'extension Site Blockr 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

                        Site Blockr is an extension used to hide links to, and actual sites from your every day browsing. If you have a site that you don't like, or never want to visit again, just add it to the list of blockd sites in the extension options and you'll never have to see it, or references to it, again.

You can also disable all social media sites with one simple button in the extension options!

Please note: this extension is in alpha so you may find bugs. If so, please report them to me via feedback or on the support site.                    

Informations de Base sur l'Extension

Nom Site Blockr Site Blockr
ID cmldlmfklkdofkaejanfndeepkhlalnf
URL Officiel https://chromewebstore.google.com/detail/site-blockr/cmldlmfklkdofkaejanfndeepkhlalnf
Description This extension hides links to, and all content from, the sites you want (alpha)
Taille du Fichier 97.08 KB
Nombre d'Installations 35
Version Actuelle 1.0.1
Dernière Mise à Jour 2014-03-19
Date de Publication 2014-03-19
Évaluation 5.00/5 Total 1 Évaluations
Développeur ahallicks
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://bitbucket.org/ahallicks/site-blockr
Langues Prises en Charge en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Site Blockr",
    "description": "This extension hides links to, and all content from, the sites you want (alpha)",
    "version": "1.0.1",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications"
    ],
    "browser_action": {
        "default_icon": {
            "19": "img\/icon-on.png",
            "38": "img\/icon-38-on.png"
        },
        "default_title": "Site Blockr is running"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "js\/SiteBlockr.js"
            ],
            "css": [
                "css\/SiteBlockr.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "img\/icon.png",
        "32": "img\/icon-38.png",
        "48": "img\/icon-64.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "img\/icon-64.png"
    ],
    "options_page": "options.html",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+H"
            }
        }
    }
}