Tamper
Extends the Developer Tools, lets you locally edit files served from the web using Mitmproxy.
Tamper란 무엇입니까?
Tamper은(는) dutzi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extends the Developer Tools, lets you locally edit files served from the web using Mitmproxy."입니다.
확장 프로그램 스크린샷
Tamper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tamper is a chrome extension that lets you inspect and modify requests made by Google Chrome before they are served to the browser. IMPORTANT: For Tamper to run you will need to install its companion app using `pip install`, find out more here https://dutzi.github.io/tamper/#install. --- After installing both the chrome extension and the pyhton package, you will see the Tamper panel in your devtools. Similar to the Network panel, the Tamper panel shows you a list of all requests made by this page. Click on one of these network requests and the response Chrome got will open in your default editor. Make the changes you need and save the file. Once you hit refresh, Tamper will serve Chrome the file you just saved. --- Tamper is an open source project, based on mitmproxy. Fork us on Github: https://github.com/dutzi/tamper
확장 프로그램 기본 정보
이름 | |
ID | mabhojhgigkmnkppkncbkblecnnanfmd |
공식 URL | https://chrome.google.com/webstore/detail/tamper/mabhojhgigkmnkppkncbkblecnnanfmd |
설명 | Extends the Developer Tools, lets you locally edit files served from the web using Mitmproxy. |
파일 크기 | 167 KB |
설치 횟수 | 2,764 |
현재 버전 | 0.24.8 |
최근 업데이트 | 2020-06-12 |
출시 날짜 | 2020-06-12 |
평점 | 2.95/5 총 19 개의 평점 |
개발자 | dutzi |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://dutzi.github.io/tamper/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.24.8", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_icon": { "19": "images\/icon_off.png", "38": "images\/[email protected]" }, "default_title": "Tamper is enabled" }, "commands": { "toggle-tamper": { "suggested_key": { "windows": "Ctrl+Shift+P", "mac": "Command+Shift+P" }, "description": "Toggle Tamper" } }, "permissions": [ "nativeMessaging", "contextMenus", "proxy" ], "devtools_page": "devtools.html", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |