Created
November 26, 2018 15:09
-
-
Save s1r-J/64b2393c3d2e28fcc2ab2afec29c96ca to your computer and use it in GitHub Desktop.
初めてのChrome拡張機能としてGitHubでStarをつけたリポジトリをタグで管理できる機能を作った ref: https://qiita.com/s1r/items/1a060f2173e2849aebab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('head').append($('<link>', { | |
rel: 'stylesheet', | |
href: chrome.extension.getURL('css/style.css'), | |
})); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"web_accessible_resources": [ | |
"*.css", | |
"*.eot", | |
"*.svg", | |
"*.woff", | |
"*.woff2", | |
"*.ttf" | |
], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment