GramGrabber
Copy the link to an Instagram image to your clipboard.
GramGrabberとは何ですか?
GramGrabberはemptysetによって開発されたChromeの拡張機能で、その主な機能は「Copy the link to an Instagram image to your clipboard.」です。
GramGrabber拡張機能のCRXファイルをダウンロード
GramGrabber拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
- Visit a page on Instagram and click to view the larger image in the modal.
- You can now Right Click and Select 'GramGrabber' from the Right Click Menu.
- The Link to the image is now on your clipboard and ready to be pasted. 拡張機能の基本情報
| 名前 | |
| ID | bpghmpfldmkldeehcccbgebkldnbkpfm |
| 公式URL | https://chromewebstore.google.com/detail/gramgrabber/bpghmpfldmkldeehcccbgebkldnbkpfm |
| 説明 | Copy the link to an Instagram image to your clipboard. |
| ファイルサイズ | 88.3 KB |
| インストール数 | 20 |
| 現在のバージョン | 1.0.0 |
| 最終更新日 | 2015-12-10 |
| 公開日 | 2015-12-10 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | emptyset |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "GramGrabber",
"description": "Copy the link to an Instagram image to your clipboard.",
"version": "1.0.0",
"icons": {
"16": "gramgrabber-icon-small.png",
"128": "gramgrabber-icon-large.png"
},
"permissions": [
"contextMenus",
"*:\/\/*.instagram.com\/*",
"clipboardWrite"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.instagram.com\/*"
],
"js": [
"jquery-2.1.4.js",
"gramGrabber.js"
]
}
],
"background": {
"persistent": true,
"scripts": [
"gramGrabberbg.js"
]
}
} | |