Old Reddit For Chrome
For those who prefer the old reddit interface.
什麼是Old Reddit For Chrome?
Old Reddit For Chrome是由Team Doko開發的Chrome擴展程式,該擴展的主要功能是“For those who prefer the old reddit interface.”。
擴展截圖
下載Old Reddit For Chrome擴展crx文件
下載Old Reddit For Chrome擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
If you're someone who likes the old reddit interface you'll love this extension. Welcome to Old Reddit For Chrome! - Switch to the old reddit interface. - Disable custom subreddit styles. (Use default styles.) - Browse without logging in. - No more annoying popups. - You can set the extension to work only in incognito mode. Note: To use this extension in incognito mode, you need to enable it in incognito mode: - Click the extension icon in the address bar. - Click manage extensions. - Click the Details button in the extension. - Toggle "Allow in incognito mode". To configure this extension: - Click the extension icon in the address bar. - Click the menu button (three dots) next to the extension name. - Click Options. - Select your preferences.
擴展基本資訊
名稱 | Old Reddit For Chrome |
ID | hkcalkecmjhbkgkkfdblgdikfgoglmlc |
官方網址 | https://chromewebstore.google.com/detail/old-reddit-for-chrome/hkcalkecmjhbkgkkfdblgdikfgoglmlc |
簡介 | For those who prefer the old reddit interface. |
檔案大小 | 233 KB |
安裝次數 | 102 |
目前版本 | 1.3.1 |
更新時間 | 2022-08-12 |
上架時間 | 2021-12-28 |
開發者 | Team Doko |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://teamdoko.com/products/old-reddit-for-safari/ |
說明頁面URL | https://teamdoko.com/support/ |
隱私政策頁面URL | https://teamdoko.com/privacy |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Old Reddit For Chrome", "description": "For those who prefer the old reddit interface.", "version": "1.3.1", "manifest_version": 2, "permissions": [ "storage", "*:\/\/*.reddit.com\/*" ], "icons": { "16": "\/images\/old_reddit_16.png", "32": "\/images\/old_reddit_32.png", "48": "\/images\/old_reddit_48.png", "128": "\/images\/old_reddit_128.png" }, "options_ui": { "page": "\/options\/index.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "*:\/\/reddit.com\/*", "*:\/\/www.reddit.com\/*" ], "run_at": "document_start", "js": [ "\/content.js" ] }, { "matches": [ "*:\/\/old.reddit.com\/*" ], "run_at": "document_end", "js": [ "\/content_old_reddit.js" ] } ] } |