アメブロの標準エディタに機能をプラスして、あなたのブログライフをお手伝いします。
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "AmbEditorPlus",
"description": "アメブロの標準エディタに機能をプラスして、あなたのブログライフをお手伝いします。",
"version": "1.2.0.0",
"permissions": [
"storage"
],
"icons": {
"16": "images/icons/icon16.png",
"19": "images/icons/icon19.png",
"38": "images/icons/icon38.png",
"48": "images/icons/icon48.png",
"128": "images/icons/icon128.png"
},
"browser_action": {
"default_title": "AmbEditorPlus",
"default_icon": "images/icons/icon19.png",
"default_popup": "html/popup.html"
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"https://blog.ameba.jp/ucs/entry/srventryinsertinput.do",
"https://blog.ameba.jp/ucs/entry/srventryupdateinput.do*"
],
"css": [
"css/contents.css"
],
"js": [
"js/jquery.min.js",
"js/imageselect.js",
"js/contents_func.js",
"js/contents.js"
]
}
],
"web_accessible_resources": [
"images/content/*.png"
],
"homepage_url": "https://ameblo.jp/youx2moon"
}