DynamicHistory

Automagically delete history based on the keywords on the page!

DynamicHistory란 무엇입니까?

DynamicHistory은(는) nulldev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automagically delete history based on the keywords on the page!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

DynamicHistory 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Automatically remove browsing history based on the website you are on and words on the page!

For example, you could choose to not keep history for any page with the word 'bad-history' on it. DynamicHistory will scan every website you visit and remove any pages containing the word 'bad-history' from your history.

The filters can be modified in the extension preferences.

Any page that will not keep history will have a red border around it along with it's tab's name changed, if you do not see this on a page you specified to not be tracked, check your filters again! These indicators can be toggled in the extension preferences.

You can click on the DynamicHistory icon to access the extension preferences.

Cookies and cache data WILL NOT be removed. The page may also appear on the recently visited page or also in the recently closed tabs list (if the page is closed) so be careful!

DynamicHistory can also modify history entries as they are being added. You can use this to do crazy things like turn all your history entries into "Rick Roll" links.

IMPORTANT:
DynamicHistory does not function properly with Chrome's history sync enabled. Instructions to disable history sync will pop up after you install DynamicHistory.                    

확장 프로그램 기본 정보

이름 DynamicHistory DynamicHistory
ID ehkdegpnplleadlmjoaidmjiabocgpok
공식 URL https://chromewebstore.google.com/detail/dynamichistory/ehkdegpnplleadlmjoaidmjiabocgpok
설명 Automagically delete history based on the keywords on the page!
파일 크기 213 KB
설치 횟수 446
현재 버전 2.17
최근 업데이트 2018-06-23
출시 날짜 2018-06-23
평점 4.86/5 총 7 개의 평점
개발자 nulldev
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL http://nulldev.xyz/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "applications": {
        "gecko": {
            "id": "@dynamichistory"
        }
    },
    "name": "DynamicHistory",
    "short_name": "DynamicHistory",
    "author": "nulldev",
    "description": "Automagically delete history based on the keywords on the page!",
    "version": "2.17",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "browser_style": true
    },
    "permissions": [
        "activeTab",
        "tabs",
        "",
        "history",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    },
    "sandbox": {
        "pages": [
            "history_processor_sandbox.html"
        ]
    }
}