Not My President
Replace Donald Trump's name on any website with anything you wish. Randomly generate an Obama quote. Redirect whitehouse.gov visits.
Not My President란 무엇입니까?
Not My President은(는) ilan.gitter에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace Donald Trump's name on any website with anything you wish. Randomly generate an Obama quote. Redirect whitehouse.gov visits."입니다.
확장 프로그램 스크린샷
Not My President 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Make the Internet Great Again! This Chrome Extension allows you to replace "Donald Trump, Donald J. Trump, President Trump, and Trump" to anything you'd like (ex: Turd Monster, The Angry Cheeto, etc.) His name is replaced by "Not My President" by default. To change this, click the Obama icon, then click "Extension Options". It now has a random nickname generator within the options menu. Other Features: 1. Automatically redirects you from whitehouse.gov to Obama's archived whitehouse.gov page. 2. Get a random Obama quote when you click the Obama icon in the extensions toolbar. Tips: 1. You'll have to refresh the page to see results after the first installation and if you choose an alternate name.
확장 프로그램 기본 정보
이름 | Not My President |
ID | bfnemnbedbmheofgnihjnhlagpobjjpl |
공식 URL | https://chromewebstore.google.com/detail/not-my-president/bfnemnbedbmheofgnihjnhlagpobjjpl |
설명 | Replace Donald Trump's name on any website with anything you wish. Randomly generate an Obama quote. Redirect whitehouse.gov visits. |
파일 크기 | 80.21 KB |
설치 횟수 | 140 |
현재 버전 | 1.13 |
최근 업데이트 | 2018-11-08 |
출시 날짜 | 2018-11-07 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | ilan.gitter |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Not My President", "description": "Replace Donald Trump's name on any website with anything you wish. Randomly generate an Obama quote. Redirect whitehouse.gov visits.", "version": "1.13", "icons": { "128": "sad.png" }, "background": { "scripts": [ "bg.js" ] }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "tabs", "storage", "webRequest", "https:\/\/en.wikiquote.org\/*", "*:\/\/whitehouse.gov\/*", "*:\/\/www.whitehouse.gov\/*", "webRequestBlocking" ], "options_ui": { "page": "options.html", "chrome_style": true } } |