GoodTwitter
Forces your browser to use old twitter.
什么是GoodTwitter?
GoodTwitter是由Zusor开发的Chrome扩展程序,该扩展的主要功能是“Forces your browser to use old twitter.”。
扩展截图
下载GoodTwitter扩展crx文件
下载GoodTwitter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
THIS ADDON IS DEPRECATED AND WILL NO LONGER BE SUPPORTED https://twitter.com/ZusorOW/status/1258885451055800320 This Add-on brings back old twitter by changing the user agent of all your browsers requests to the one of an older browser If this add-on stops working, try the troubleshooting guide. For troubleshooting go here https://github.com/ZusorCode/GoodTwitterChrome/blob/master/troubleshooting.md EXPLANATION FOR REQUIRING THE BROWSING HISTORY PERMISSION: If you install the add-on there will be a warning that it can read your browsing history. This is technically true, however it doesn't. It needs the permission to clean the cache for twitter after installing. GoodTwitter does NOT collect any information about you, it does NOT use any analytics at all. This project is open-source: github.com/ZusorCode/GoodTwitterChrome Want to support me? ko-fi.com/zusordev Built by Zusor inspired by super raging about the redesign
扩展基本信息
名称 | GoodTwitter |
ID | jbanhionoclikdjnjlcmefiofgjimgca |
官方URL | https://chromewebstore.google.com/detail/goodtwitter/jbanhionoclikdjnjlcmefiofgjimgca |
简介 | Forces your browser to use old twitter. |
文件大小 | 11.05 KB |
安装次数 | 47,807 |
当前版本 | 2.2 |
更新时间 | 2020-05-08 |
上架时间 | 2020-05-08 |
评分 | 4.69/5 共945次评分 |
开发者 | Zusor |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GoodTwitter", "version": "2.2", "description": "Forces your browser to use old twitter.", "manifest_version": 2, "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/*.twitter.com\/", "browsingData", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "remove-banner.js" ] } ], "browser_action": { "default_popup": "popup\/info.html" }, "icons": { "128": "128.png" } } |