Security Tweaks
Improve your online security with few tweaks via toolbar popup!
Security Tweaks란 무엇입니까?
Security Tweaks은(는) loora에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improve your online security with few tweaks via toolbar popup!"입니다.
확장 프로그램 스크린샷
Security Tweaks 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Security Tweaks is an extension that helps you improve your security while browsing by using eight different techniques. Simply open toolbar popup UI and mark a desired tweak. Please note that, only few tweaks are selected by default. There are few settings (related to JavaScript, inline-script and cookie) available in toolbar popup to adjust. Currently there are 8 tweaks available for this add-on: 1. Block most common ads. 2. Block third-party JavaScript. 3. Enable safe-browsing. 4. Block cookies. 5. Block inline-script. 6. Block Flash contents. 7. Disable window.eval(). 8. Block most common malware URLs. Note 1: I have made this extension with Yubi's collaboration. This add-on is inspired by Speed Tweaks made by Yubi: https://chrome.google.com/webstore/detail/speed-tweaks/afebilemcaepdkmhmibgmnpfppnjimjf Note 2: to report bugs, please fill the bug report form in the addon's homepage (https://mybrowseraddon.com/security-tweaks.html).
확장 프로그램 기본 정보
이름 | Security Tweaks |
ID | cbfhjbllealmkfknkpfmpkpljmlcjpjl |
공식 URL | https://chromewebstore.google.com/detail/security-tweaks/cbfhjbllealmkfknkpfmpkpljmlcjpjl |
설명 | Improve your online security with few tweaks via toolbar popup! |
파일 크기 | 3.07 MB |
설치 횟수 | 903 |
현재 버전 | 0.1.6 |
최근 업데이트 | 2024-02-20 |
출시 날짜 | 2018-10-17 |
평점 | 4.67/5 총 3 개의 평점 |
개발자 | loora |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://mybrowseraddon.com/security-tweaks.html |
도움말 페이지 URL | https://mybrowseraddon.com/security-tweaks.html |
개인정보 보호 정책 페이지 URL | https://mybrowseraddon.com/privacy-policy/security-tweaks.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.6", "manifest_version": 3, "name": "Security Tweaks", "host_permissions": [ "*:\/\/*\/*" ], "homepage_url": "https:\/\/mybrowseraddon.com\/security-tweaks.html", "description": "Improve your online security with few tweaks via toolbar popup!", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "privacy", "notifications", "contentSettings", "declarativeNetRequest" ], "web_accessible_resources": [ { "matches": [ "*:\/\/*\/*" ], "resources": [ "data\/content_script\/tweaks\/eval.js" ] } ], "action": { "default_title": "Security Tweaks", "default_popup": "data\/popup\/popup.html", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*\/*" ], "run_at": "document_start", "js": [ "data\/content_script\/inject.js", "data\/content_script\/tweaks\/eval.js" ] } ], "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |