StackOverflow that 90's Theme
Add unnecessary clutter to give that 90's feeling to StackOverflow
什麼是StackOverflow that 90's Theme?
StackOverflow that 90's Theme是由Alexander開發的Chrome擴展程式,該擴展的主要功能是“Add unnecessary clutter to give that 90's feeling to StackOverflow”。
擴展截圖
下載StackOverflow that 90's Theme擴展crx文件
下載StackOverflow that 90's Theme擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Chrome extension to modify StackOverflow.com theme and some other stackexchange sites to the 2019 April fools theme. Based on https://stackapps.com/questions/8287/2019-april-fools-day-retro-theme Source code: https://github.com/Alexrgs/Retro_StackOverflow Special Thanks/Credits https://github.com/a-stone-arachnid/Time-Travel-Mode https://github.com/tholman/90s-cursor-effects Icons made by freepik
擴展基本資訊
名稱 | StackOverflow that 90's Theme |
ID | dhljglinknmoehnmefabbgcimlknopba |
官方網址 | https://chromewebstore.google.com/detail/stackoverflow-that-90s-th/dhljglinknmoehnmefabbgcimlknopba |
簡介 | Add unnecessary clutter to give that 90's feeling to StackOverflow |
檔案大小 | 87.04 KB |
安裝次數 | 30 |
目前版本 | 1.0.0 |
更新時間 | 2021-01-18 |
上架時間 | 2021-01-18 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Alexander |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "StackOverflow that 90's Theme", "version": "1.0.0", "icons": { "512": "party.png" }, "description": "Add unnecessary clutter to give that 90's feeling to StackOverflow", "content_scripts": [ { "js": [ "jquery-3.5.1.min.js", "fairyDustCursor.js", "content.js" ], "css": [ "content.css" ], "matches": [ "https:\/\/*.stackoverflow.com\/", "https:\/\/*.stackoverflow.com\/questions\/*", "https:\/\/*.stackoverflow.com\/questions?*", "https:\/\/*.stackoverflow.com\/tags\/*", "https:\/\/*.stackoverflow.com\/users\/*", "https:\/\/*.stackoverflow.com\/unanswered\/*", "https:\/\/*.askubuntu.com\/questions\/*", "https:\/\/*.serverfault.com\/questions\/*", "https:\/\/*.superuser.com\/questions\/*", "https:\/\/*.stackapps.com\/questions\/*", "https:\/\/*.mathoverflow.net\/questions\/*" ], "run_at": "document_start" } ], "permissions": [], "browser_action": { "default_name": "StackOverflow 90's Theme", "default_icon": "party.png" } } |