Security Tweaks

Improve your online security with few tweaks via toolbar popup!

Security Tweaksคืออะไร?

Security Tweaks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย loora และคุณลักษณะหลักของมันคือ "Improve your online security with few tweaks via toolbar popup!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Security Tweaks

ดาวน์โหลดไฟล์ส่วนขยาย Security Tweaks ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
    }
}