Removed Sponsored Content

This extension removes sponsored Content from web pages

Vad är Removed Sponsored Content?

Removed Sponsored Content är en Chrome-tillägg utvecklad av abrownm24, och dess huvudfunktion är "This extension removes sponsored Content from web pages".

Tilläggsskärmbilder

screenshot

Ladda ner Removed Sponsored Content-förlängningens CRX-fil

Ladda ner Removed Sponsored Content-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

                        Tired of sponsored content on websites tricking you into navigating to unwanted pages across often suspicious and advertisement filled websites?  Well no more!

This extension will remove all "Around the web", "Sponsored", and "Featured" content from websites that redirect you to another web site.  Any links internal to the site you are currently viewing are left in tact, only the links to external sites are removed.

The extension is still new so please note any bugs you find.  If there are any websites where the "sponsored" section still appears, let me know and I will work on including them.                    

Grundläggande Information om Tillägg

Namn Removed Sponsored Content Removed Sponsored Content
ID hcdjjimgpihpnlbhgpjappbjehhpbfol
Officiell webbadress https://chrome.google.com/webstore/detail/removed-sponsored-content/hcdjjimgpihpnlbhgpjappbjehhpbfol
Beskrivning This extension removes sponsored Content from web pages
Filstorlek 89.09 KB
Antal Installationer 215
Aktuell Version 1.0
Senast Uppdaterad 2015-11-28
Publiceringsdatum 2015-11-28
Betyg 2.30/5 Totalt 10 Betyg
Utvecklare abrownm24
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Removed Sponsored Content",
    "short_name": "R S C",
    "description": "This extension removes sponsored Content from web pages",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "css": [
                "mycss.css"
            ],
            "run_at": "document_idle",
            "js": [
                "jquery.js",
                "jquery-ui.js",
                "myscript.js"
            ]
        }
    ],
    "icons": {
        "16": "RSC.png",
        "48": "RSC.png",
        "128": "RSC.png"
    },
    "permissions": [
        "tabs"
    ]
}