Twitter Login Hider
Browse Twitter without an account!
什麼是Twitter Login Hider?
Twitter Login Hider是由James Presario開發的Chrome擴展程式,該擴展的主要功能是“Browse Twitter without an account!”。
擴展截圖
下載Twitter Login Hider擴展crx文件
下載Twitter Login Hider擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Trying to view Twitter but don't have an account? Normally after a few scrolls, you'll be prompted to create one to continue browsing. With this extension, that login prompt is removed, allowing you to view Twitter without an account!
擴展基本資訊
名稱 | Twitter Login Hider |
ID | eonjdimglkmekijpodngceidnbdajcba |
官方網址 | https://chromewebstore.google.com/detail/twitter-login-hider/eonjdimglkmekijpodngceidnbdajcba |
簡介 | Browse Twitter without an account! |
檔案大小 | 107 KB |
安裝次數 | 102 |
目前版本 | 1.00 |
更新時間 | 2022-09-17 |
上架時間 | 2022-09-13 |
評分 | 5.00/5 共 1 次評分 |
開發者 | James Presario |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Login Hider", "description": "Browse Twitter without an account!", "version": "1.00", "manifest_version": 3, "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/icons\/icon16.png", "32": "\/images\/icons\/icon32.png", "48": "\/images\/icons\/icon48.png", "128": "\/images\/icons\/icon128.png" } }, "icons": { "16": "\/images\/icons\/icon16.png", "32": "\/images\/icons\/icon32.png", "48": "\/images\/icons\/icon48.png", "128": "\/images\/icons\/icon128.png" }, "options_page": "onboarding.html", "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "js": [ "nologin.js" ], "run_at": "document_idle" } ] } |