Linkable

Provides a permalink to certain webpages.

Linkableとは何ですか?

Linkableはdaleyjemによって開発されたChromeの拡張機能で、その主な機能は「Provides a permalink to certain webpages.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Parses HTML elements on a page with an id attribute. A hashed URL (i.e. "http://www.site.com/#section") can quickly be copied to the clipboard.                    

拡張機能の基本情報

名前 Linkable Linkable
ID ndnlgncfhnlimohdlfkgadmanpnmpbbe
公式URL https://chromewebstore.google.com/detail/linkable/ndnlgncfhnlimohdlfkgadmanpnmpbbe
説明 Provides a permalink to certain webpages.
ファイルサイズ 10.8 KB
インストール数 330
現在のバージョン 1.0
最終更新日 2016-06-02
公開日 2016-06-02
開発者 daleyjem
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Linkable",
    "author": "Jeremy Daley",
    "version": "1.0",
    "description": "Provides a permalink to certain webpages.",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_title": "Show\/hide linkable items",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "main.js",
                "clipboard.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "link.svg"
    ]
}