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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |