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文件

下載Custom HTML in Pages擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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';"
}