Custom HTML in Pages

Adding Custom HTML code in Single Page, All Pages or Domains

Custom HTML in Pages란 무엇입니까?

Custom HTML in Pages은(는) anantnegik7에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adding Custom HTML code in Single Page, All Pages or Domains"입니다.

확장 프로그램 스크린샷

screenshot

Custom HTML in Pages 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This Chrome Extension will add multiple scripts in the head section of desired number of pages.

Examples - 
If you want to add some script in head section of any page that you can use the Extension.
Simply Fill the required fields and reload the page to see changes.

Contributor: https://codeeshop.com/
Github Link: https://github.com/codeeshop-oc/custom-html-in-pages

If you have any issue regarding this tool, contact us via 
Email : [email protected]
Facebook : https://www.facebook.com/codeeshop/

We highly appreciate your suggestions and reviews!

Code is available to customize and update as per required in the github repo mentioned above. 

(We do not store your private information on our servers.)                    

확장 프로그램 기본 정보

이름 Custom HTML in Pages Custom HTML in Pages
ID pnkdifmjnenfamecmpipdaaokhoeihlm
공식 URL https://chromewebstore.google.com/detail/custom-html-in-pages/pnkdifmjnenfamecmpipdaaokhoeihlm
설명 Adding Custom HTML code in Single Page, All Pages or Domains
파일 크기 880 KB
설치 횟수 40
현재 버전 1.0.1
최근 업데이트 2022-12-28
출시 날짜 2022-01-16
개발자 anantnegik7
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://codeeshop.com/
도움말 페이지 URL https://codeeshop.com/contact-us
개인정보 보호 정책 페이지 URL https://codeeshop.com/page/2-privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Custom HTML in Pages",
    "description": "Adding Custom HTML code in Single Page, All Pages or Domains",
    "version": "1.0.1",
    "manifest_version": 2,
    "author": "Anant Negi",
    "icons": {
        "16": "icons\/icon-16x16.png",
        "48": "icons\/icon-48x48.png",
        "128": "icons\/icon-128x128.png"
    },
    "browser_action": {
        "default_popup": "www\/index.html#\/popup"
    },
    "background": {
        "scripts": [
            "www\/js\/bex-background.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "www\/js\/bex-content-script.js",
                "js\/content-script.js"
            ],
            "css": [
                "css\/content-css.css"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "web_accessible_resources": [
        "www\/*",
        "js\/*",
        "css\/*",
        ""
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}