Removed Sponsored Content

This extension removes sponsored Content from web pages

什麼是Removed Sponsored Content?

Removed Sponsored Content是由abrownm24開發的Chrome擴展程式,該擴展的主要功能是“This extension removes sponsored Content from web pages”。

擴展截圖

screenshot

下載Removed Sponsored Content擴展crx文件

下載Removed Sponsored Content擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Removed Sponsored Content Removed Sponsored Content
ID hcdjjimgpihpnlbhgpjappbjehhpbfol
官方網址 https://chrome.google.com/webstore/detail/removed-sponsored-content/hcdjjimgpihpnlbhgpjappbjehhpbfol
簡介 This extension removes sponsored Content from web pages
檔案大小 89.09 KB
安裝次數 215
目前版本 1.0
更新時間 2015-11-28
上架時間 2015-11-28
評分 2.30/5 共 10 次評分
開發者 abrownm24
付費類型 free
支援的語言 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"
    ]
}