Custom HTML in Pages

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

Custom HTML in Pagesคืออะไร?

Custom HTML in Pages เป็นส่วนขยายของ Chrome ที่พัฒนาโดย anantnegik7 และคุณลักษณะหลักของมันคือ "Adding Custom HTML code in Single Page, All Pages or Domains"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Custom HTML in Pages

ดาวน์โหลดไฟล์ส่วนขยาย 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';"
}