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