MS Rewards Auto
Extension to automatize daily MS Rewards.
MS Rewards Auto란 무엇입니까?
MS Rewards Auto은(는) rukidev507에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension to automatize daily MS Rewards."입니다.
확장 프로그램 스크린샷
MS Rewards Auto 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Extension to automatize daily MS Rewards Points obtained from web search using the Bing.com search engine. Can be used along an user-agents extension to get the reward points from mobile device searches as well. Click the MS Rewards Auto icon to start running the automatic searches and click the same icon once again to stop this extension. Reward icons created by Freepik - Flaticon https://www.flaticon.com/free-icons/reward
확장 프로그램 기본 정보
이름 | MS Rewards Auto |
ID | fingclmebbbbamocdahkffemjoijchkm |
공식 URL | https://chromewebstore.google.com/detail/ms-rewards-auto/fingclmebbbbamocdahkffemjoijchkm |
설명 | Extension to automatize daily MS Rewards. |
파일 크기 | 18.28 KB |
설치 횟수 | 6,459 |
현재 버전 | 0.0.1.0 |
최근 업데이트 | 2022-09-12 |
출시 날짜 | 2022-09-12 |
평점 | 3.33/5 총 12 개의 평점 |
개발자 | rukidev507 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MS Rewards Auto", "version": "0.0.1.0", "description": "Extension to automatize daily MS Rewards.", "manifest_version": 3, "icons": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" }, "action": { "default_title": "Start" }, "content_scripts": [ { "matches": [ "*:\/\/*.bing.com\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "activeTab", "scripting" ] } |