FunnyJunk Style Fix
Fixes various styles and adds new features to FJ
FunnyJunk Style Fixとは何ですか?
FunnyJunk Style FixはTridaakによって開発されたChromeの拡張機能で、その主な機能は「Fixes various styles and adds new features to FJ」です。
拡張機能のスクリーンショット
FunnyJunk Style Fix拡張機能のCRXファイルをダウンロード
FunnyJunk Style Fix拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Fixes FJ's styling and has a couple of minor JS bug fixes. It makes FunnyJunk look better with very small styling changes. It is highly customizeable being able to turn parts of the styling and javascript on and off. Adds: -Flag and emoji tooltips -Over 1000 lines of CSS -Holiday styling which turns on and off depending on date -Can be used to strip board and profile styling -Uses high resolution emojis and flags which look great in large screens -Uses font-icons which are smaller in size and easy to manage -Can be used to 'normalize' usernames
拡張機能の基本情報
名前 | FunnyJunk Style Fix |
ID | higjcciaeonohlnmjidhbghihpaiodch |
公式URL | https://chromewebstore.google.com/detail/funnyjunk-style-fix/higjcciaeonohlnmjidhbghihpaiodch |
説明 | Fixes various styles and adds new features to FJ |
ファイルサイズ | 1014 KB |
インストール数 | 43 |
現在のバージョン | 3.0.2 |
最終更新日 | 2020-03-18 |
公開日 | 2020-03-17 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Tridaak |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "FunnyJunk Style Fix", "version": "3.0.2", "description": "Fixes various styles and adds new features to FJ", "options_page": "settings.html", "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*.funnyjunk.com\/*", "https:\/\/*.funnyjunk.com\/*" ], "js": [ "jQuery.js", "styleFix.js", "contextMenu.js" ] } ], "web_accessible_resources": [ "*.css", "*.js", "*.png", "*.html", "*" ], "permissions": [ "storage", "contextMenus", "activeTab" ] } |