選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

manifest.json 372B

123456789101112131415
  1. {
  2. "name": "AlwaysKillSticky",
  3. "version": "0.1",
  4. "description": "Get rid of fixed elements on websites - permanently!",
  5. "permissions": [ "activeTab", "storage" ],
  6. "content_scripts": [
  7. {
  8. "matches": [ "http://*/*", "https://*/*" ],
  9. "run_at": "document_end",
  10. "js": [ "contentScript.js" ]
  11. }
  12. ],
  13. "options_page": "options.html",
  14. "manifest_version": 2
  15. }