Safe History
Scans web pages you visit for adult or Not Safe For Work (NSFW) content and removes them from your history.
什麼是Safe History?
Safe History是由AnthonyOSX開發的Chrome擴展程式,該擴展的主要功能是“Scans web pages you visit for adult or Not Safe For Work (NSFW) content and removes them from your history.”。
擴展截圖
下載Safe History擴展crx文件
下載Safe History擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Tired of forgetting to switch to incognito, delete specific results from your history or have someone checking your history who gets suspicious when it seems to be recently cleared? Those times are over, Safe History is here to help. Safe History works by automatically scanning the web pages you visit and looking for anything that might get you in trouble (porn, NSFW, nudity, profanity, etc.). If something is found the page is automatically flagged, deleted from your browsing history and the browser icon will color itself to notify you your history is in good hands. Everything else is simply ignored and kept in your history like normal. Safe History features: - Automatic deletion of adult or Not Safe For Work (NSFW) sites history entries right when you view them - Maintains a realistic and clean search history - No user input needed - Keeps all history deemed "safe" for all eyes If a site manages to slip past the filter please report it. Icon credits: "data-filter" by Vecteezy is licensed under CC BY 3.0
擴展基本資訊
名稱 | Safe History |
ID | dlkkhffefpkmobphiphbghhhilhoopma |
官方網址 | https://chromewebstore.google.com/detail/safe-history/dlkkhffefpkmobphiphbghhhilhoopma |
簡介 | Scans web pages you visit for adult or Not Safe For Work (NSFW) content and removes them from your history. |
檔案大小 | 43.61 KB |
安裝次數 | 496 |
目前版本 | 1.0.3 |
更新時間 | 2016-02-28 |
上架時間 | 2016-02-27 |
評分 | 3.33/5 共 6 次評分 |
開發者 | AnthonyOSX |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Safe History", "description": "Scans web pages you visit for adult or Not Safe For Work (NSFW) content and removes them from your history.", "version": "1.0.3", "manifest_version": 2, "permissions": [ "contextMenus", "tabs", "history" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery-1.12.1.min.js", "inject.js" ] } ], "page_action": { "default_title": "Safe History", "default_popup": "page_action.html" }, "icons": { "128": "data-filter-128.png", "48": "data-filter-48.png", "32": "data-filter-32.png", "16": "data-filter-16.png" } } |