Code Copier

Code Copier - Extension to copy contents inside and

 tags with right click

Code Copierとは何ですか?

Code CopierはIce Lamによって開発されたChromeの拡張機能で、その主な機能は「Code Copier - Extension to copy contents inside and

 tags with right click」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Code Copier拡張機能のCRXファイルをダウンロード

Code Copier拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

 Google Chrome and Mozilla Firefox extension to copy contents inside  and 
 tags with right click. Fetures: * Right click on  and 
 tags to copy
* Up to 10 copy history
* Go back to the website where the code snippets from
* Disable plugin on user defined host names

Other Information:
* Firefox Version: https://addons.mozilla.org/en-US/firefox/addon/code-copier/
* Source code available at https://github.com/icelam/code-copier.                    

拡張機能の基本情報

名前 Code Copier Code Copier
ID polidkhcaghmmijeemenkiloblpdfphp
公式URL https://chromewebstore.google.com/detail/code-copier/polidkhcaghmmijeemenkiloblpdfphp
説明 Code Copier - Extension to copy contents inside and
 tags with right click
ファイルサイズ 233 KB
インストール数 2,000
現在のバージョン 1.0
最終更新日 2019-11-04
公開日 2019-11-04
評価 4.33/5 合計 6 レビュー
開発者 Ice Lam
支払い方法 free
拡張機能のウェブサイト https://github.com/icelam/code-copier
対応言語 en-US
manifest.json
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Code Copier", "author": "Ice Lam", "homepage_url": "https:\/\/github.com\/icelam\/code-copier", "version": "1.0", "description": "Code Copier - Extension to copy contents inside  and 
 tags with right click",
    "icons": {
        "16": "assets\/images\/icons\/icon16.png",
        "32": "assets\/images\/icons\/icon32.png",
        "36": "assets\/images\/icons\/icon36.png",
        "48": "assets\/images\/icons\/icon48.png",
        "128": "assets\/images\/icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/images\/icons\/icon16.png",
            "24": "assets\/images\/icons\/icon24.png",
            "32": "assets\/images\/icons\/icon32.png"
        },
        "default_title": "Code Copier",
        "default_popup": "index.html"
    },
    "permissions": [
        "clipboardWrite",
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "assets\/js\/content-script.js"
            ],
            "css": [
                "assets\/css\/web.css"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval' blob:; style-src * 'unsafe-inline'; font-src *"
}