Google News No Top Stories
Removes Top Stories from Google News
什麼是Google News No Top Stories?
Google News No Top Stories是由robnield開發的Chrome擴展程式,該擴展的主要功能是“Removes Top Stories from Google News”。
擴展截圖
下載Google News No Top Stories擴展crx文件
下載Google News No Top Stories擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Simple extension to remove Google New's Top Stories section.
擴展基本資訊
名稱 | |
ID | oikdcblndphhmpmillphjmdpgkghcolc |
官方網址 | https://chrome.google.com/webstore/detail/google-news-no-top-storie/oikdcblndphhmpmillphjmdpgkghcolc |
簡介 | Removes Top Stories from Google News |
檔案大小 | 35.21 KB |
安裝次數 | 32 |
目前版本 | 1.1 |
更新時間 | 2016-08-17 |
上架時間 | 2016-08-17 |
評分 | 2.63/5 共 8 次評分 |
開發者 | robnield |
付費類型 | free |
支援的語言 | 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\/*" ] } |