Twitter Lite Redirector
Redirect to mobile.twitter.com from twitter.com
What is Twitter Lite Redirector?
Twitter Lite Redirector is a Chrome extension developed by https://1000ch.github.io/twitter-lite-redirector, and its main feature is "Redirect to mobile.twitter.com from twitter.com".
Extension Screenshots
Download Twitter Lite Redirector Extension CRX File
Download Twitter Lite Redirector 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
Redirect to mobile.twitter.com from twitter.com Extension Basic Information
| Name | |
| ID | lladjhcgddekbpbcoojbpcifkjhjdnjp |
| Official URL | https://chrome.google.com/webstore/detail/twitter-lite-redirector/lladjhcgddekbpbcoojbpcifkjhjdnjp |
| Description | Redirect to mobile.twitter.com from twitter.com |
| File Size | 7.69 KB |
| Installation Count | 85 |
| Current Version | 0.6.0 |
| Last Updated | 2018-11-10 |
| Publish Date | 2018-11-10 |
| Rating | 4.20/5 Total 5 Ratings |
| Developer | https://1000ch.github.io/twitter-lite-redirector |
| Payment Type | free |
| Supported Languages | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Twitter Lite Redirector",
"version": "0.6.0",
"description": "Redirect to mobile.twitter.com from twitter.com",
"manifest_version": 2,
"icons": {
"16": "img\/16.png",
"32": "img\/32.png",
"48": "img\/48.png",
"64": "img\/64.png",
"128": "img\/128.png"
},
"browser_action": {
"default_title": "Twitter Lite Redirector"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content_script.js"
],
"matches": [
"https:\/\/twitter.com\/*"
],
"exclude_matches": [
"https:\/\/twitter.com\/intent\/*",
"https:\/\/twitter.com\/share*"
],
"run_at": "document_start"
}
],
"permissions": [
"background",
"storage",
"https:\/\/twitter.com\/*"
],
"offline_enabled": false
} | |