Inject Code

Inject different javascript or css code to every website, when you want

什麼是Inject Code?

Inject Code是由max開發的Chrome擴展程式,該擴展的主要功能是“Inject different javascript or css code to every website, when you want”。

擴展截圖

screenshot
screenshot
screenshot

下載Inject Code擴展crx文件

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

擴展使用說明

                        Extension will remember all css/js code you injected in every website and auto-inject them when web page is loaded.

Features:
-  inject custom js/css to website
-  inject CDN links to website
- 38 most popular themes
- auto-inject code to site option ( after loaded page scripts will inject automatically)
- highlight syntax errors and warnings
- hot keys : 
* Ctrl+Enter - run code, 
* Ctrl+F - find in editor

For inject code to site:
- open browser devtools panel,
- go to  "Inject code" tab
- write code ( on typing code autosaving  )
- on right top corner set ckeckbox "Inject code", and after reload code will be injecting to page ( or press buttom Play for once execute code )                    

擴展基本資訊

名稱 Inject Code Inject Code
ID gpaakhhkcmlenabckmapmlfnajboobbi
官方網址 https://chromewebstore.google.com/detail/inject-code/gpaakhhkcmlenabckmapmlfnajboobbi
簡介 Inject different javascript or css code to every website, when you want
檔案大小 2.96 MB
安裝次數 792
目前版本 0.91.21
更新時間 2020-08-04
上架時間 2020-07-06
評分 4.00/5 共 6 次評分
開發者 max
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inject Code",
    "description": "Inject different javascript or css code to every website, when you want",
    "version": "0.91.21",
    "minimum_chrome_version": "16.0.884",
    "permissions": [
        "activeTab",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "devtools_page": "devtools.html",
    "manifest_version": 2
}