Fallen London Goat Farmer's Extension
This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.
Fallen London Goat Farmer's Extension란 무엇입니까?
Fallen London Goat Farmer's Extension은(는) Gallmarch Industries에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London."입니다.
확장 프로그램 스크린샷
Fallen London Goat Farmer's Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London. It includes options to exclude certain items from the calculation. This add-on is listed on the Fallen London Extension Whitelist: http://community.failbettergames.com/topic9506-fallen-london-extensions-whitelist.aspx
확장 프로그램 기본 정보
이름 | Fallen London Goat Farmer's Extension |
ID | biefkddpeaninjbkipkgnncpdlbddkfl |
공식 URL | https://chromewebstore.google.com/detail/fallen-london-goat-farmer/biefkddpeaninjbkipkgnncpdlbddkfl |
설명 | This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London. |
파일 크기 | 199 KB |
설치 횟수 | 915 |
현재 버전 | 4.0.1 |
최근 업데이트 | 2019-08-07 |
출시 날짜 | 2019-08-07 |
평점 | 5.00/5 총 17 개의 평점 |
개발자 | Gallmarch Industries |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fallen London Goat Farmer's Extension", "description": "This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.", "permissions": [ "webRequest", "storage", "*:\/\/*.fallenlondon.com\/" ], "version": "4.0.1", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.fallenlondon.com\/*", "https:\/\/.fallenlondon.com\/*" ], "css": [ "styles.css" ], "js": [ "content-script.js" ], "run_at": "document_end" } ] } |