Google News No Top Stories
Removes Top Stories from Google News
What is Google News No Top Stories?
Google News No Top Stories is a Chrome extension developed by robnield, and its main feature is "Removes Top Stories from Google News".
Extension Screenshots
Download Google News No Top Stories Extension CRX File
Download Google News No Top Stories extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Simple extension to remove Google New's Top Stories section.
Extension Basic Information
Name | |
ID | oikdcblndphhmpmillphjmdpgkghcolc |
Official URL | https://chrome.google.com/webstore/detail/google-news-no-top-storie/oikdcblndphhmpmillphjmdpgkghcolc |
Description | Removes Top Stories from Google News |
File Size | 35.21 KB |
Installation Count | 32 |
Current Version | 1.1 |
Last Updated | 2016-08-17 |
Publish Date | 2016-08-17 |
Rating | 2.63/5 Total 8 Ratings |
Developer | robnield |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google News No Top Stories", "description": "Removes Top Stories from Google News", "version": "1.1", "page_action": { "default_icon": "icon.png", "default_title": "Remove Google News Top Stories" }, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/news.google.com\/*", "http:\/\/news.google.com\/*" ], "js": [ "google_cs.js", "jquery.min.js" ], "css": [ "google_cs.css" ] } ], "permissions": [ "tabs", "http:\/\/news.google.com\/*", "https:\/\/news.google.com\/*" ] } |